swartzrock_obsidian-setting.../tsconfig.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"]
}