mirror of
https://github.com/mntno/obsidian-come-down.git
synced 2026-07-22 05:43:15 +00:00
21 lines
444 B
JSON
21 lines
444 B
JSON
{
|
|
"compilerOptions": {
|
|
"baseUrl": "src",
|
|
"inlineSourceMap": true,
|
|
"inlineSources": true,
|
|
"module": "ESNext",
|
|
"target": "ES2022",
|
|
"allowJs": true,
|
|
"noImplicitAny": true,
|
|
"moduleResolution": "node",
|
|
"importHelpers": true,
|
|
"isolatedModules": true,
|
|
"strict": true,
|
|
"strictNullChecks": true,
|
|
"noUncheckedIndexedAccess": true,
|
|
"lib": ["DOM", "ES2022"]
|
|
},
|
|
"include": [
|
|
"**/*.ts"
|
|
]
|
|
}
|