mirror of
https://github.com/jacobtread/obsidian-timekeep.git
synced 2026-07-22 10:10:27 +00:00
20 lines
432 B
JSON
20 lines
432 B
JSON
{
|
|
"compilerOptions": {
|
|
"inlineSourceMap": true,
|
|
"inlineSources": true,
|
|
"module": "ESNext",
|
|
"target": "ESNext",
|
|
"allowJs": true,
|
|
"noImplicitAny": true,
|
|
"moduleResolution": "node",
|
|
"isolatedModules": true,
|
|
"strictNullChecks": true,
|
|
"lib": ["DOM", "ES5", "ES6"],
|
|
"allowSyntheticDefaultImports": true,
|
|
"paths": {
|
|
"@/*": ["./src/*"]
|
|
},
|
|
"esModuleInterop": true
|
|
},
|
|
"include": ["src/**/*", "types/**/*"]
|
|
}
|