jacobtread_obsidian-timekeep/tsconfig.json
2024-06-23 20:25:14 +12:00

22 lines
466 B
JSON

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