mirror of
https://github.com/lucasoe/obsidian-template-folder.git
synced 2026-07-22 13:00:30 +00:00
21 lines
585 B
JSON
21 lines
585 B
JSON
{
|
|
"compilerOptions": {
|
|
"inlineSourceMap": true,
|
|
"inlineSources": true,
|
|
"module": "ESNext",
|
|
"target": "ES2021",
|
|
"strict": true,
|
|
"noImplicitReturns": true,
|
|
"noFallthroughCasesInSwitch": true,
|
|
"noUncheckedIndexedAccess": true,
|
|
"moduleResolution": "bundler",
|
|
"isolatedModules": true,
|
|
"skipLibCheck": true,
|
|
"forceConsistentCasingInFileNames": true,
|
|
"allowSyntheticDefaultImports": true,
|
|
"lib": ["ES2021", "DOM"],
|
|
"types": ["@obsidian-typings/obsidian-public-latest"]
|
|
},
|
|
"include": ["src/**/*.ts"],
|
|
"exclude": ["node_modules", "dist", "build", "main.js"]
|
|
}
|