jacobtread_obsidian-timekeep/tsconfig.json
Jacobtread 52a2b1e385 feat: added tests and increased purity
Added tests with passing full coverage for the non React logic

Moved lots of side effects for loading the current datetime out of the logic
2024-03-31 16:02:32 +13:00

23 lines
517 B
JSON

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