mirror of
https://github.com/swartzrock/obsidian-settings-float-plugin.git
synced 2026-07-22 07:48:42 +00:00
18 lines
508 B
JSON
18 lines
508 B
JSON
{
|
|
"compilerOptions": {
|
|
"baseUrl": ".",
|
|
"module": "ESNext",
|
|
"target": "ES2020",
|
|
"lib": ["DOM", "ES2020"],
|
|
"moduleResolution": "Bundler",
|
|
"strict": true,
|
|
"noEmit": true,
|
|
"allowSyntheticDefaultImports": true,
|
|
"esModuleInterop": true,
|
|
"resolveJsonModule": true,
|
|
"forceConsistentCasingInFileNames": true,
|
|
"skipLibCheck": true,
|
|
"types": ["node", "vitest/globals"]
|
|
},
|
|
"include": ["src/**/*.ts", "tests/**/*.ts", "esbuild.config.mjs", "eslint.config.mts"]
|
|
}
|