jacobtread_obsidian-timekeep/tsconfig.json
2026-04-12 10:08:19 +12:00

21 lines
439 B
JSON

{
"compilerOptions": {
"inlineSourceMap": true,
"inlineSources": true,
"module": "ESNext",
"target": "ESNext",
"allowJs": true,
"noEmit": true,
"noImplicitAny": true,
"moduleResolution": "bundler",
"isolatedModules": true,
"strictNullChecks": true,
"lib": ["DOM", "ES5", "ES6"],
"allowSyntheticDefaultImports": true,
"paths": {
"@/*": ["./src/*"]
},
"esModuleInterop": true
},
"include": ["src/**/*"]
}