mirror of
https://github.com/jacobtread/obsidian-timekeep.git
synced 2026-07-22 10:10:27 +00:00
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
23 lines
517 B
JSON
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"]
|
|
}
|