mntno_obsidian-come-down/tsconfig.json

22 lines
444 B
JSON
Raw Normal View History

2025-03-04 07:49:03 +00:00
{
"compilerOptions": {
2025-03-10 12:13:58 +00:00
"baseUrl": "src",
2025-03-04 07:49:03 +00:00
"inlineSourceMap": true,
"inlineSources": true,
"module": "ESNext",
2025-03-10 12:13:58 +00:00
"target": "ES2022",
2025-03-04 07:49:03 +00:00
"allowJs": true,
"noImplicitAny": true,
"moduleResolution": "node",
"importHelpers": true,
"isolatedModules": true,
2025-10-04 12:07:33 +00:00
"strict": true,
2025-03-04 07:49:03 +00:00
"strictNullChecks": true,
2025-09-11 02:38:23 +00:00
"noUncheckedIndexedAccess": true,
2025-03-10 12:13:58 +00:00
"lib": ["DOM", "ES2022"]
2025-03-04 07:49:03 +00:00
},
"include": [
"**/*.ts"
]
}