poanse_obsidian-taskmap/tsconfig.json
Poluboiarinov Anton 39c806a2e6
Github attestation and fixes (#6)
Added github attestation for artefacts
Fixed obsidian review warnings
Fixed a bug - when deleting a task, its children were reparented with incorrect priorities which broke manual repositioning
Fixed a visual bug - edited task was drawn behind its siblings which made name editing clunky for long task names
2026-07-13 09:37:48 +03:00

20 lines
452 B
JSON

{
"compilerOptions": {
"verbatimModuleSyntax": true,
"skipLibCheck": true,
"baseUrl": ".",
"inlineSourceMap": true,
"inlineSources": true,
"module": "ESNext",
"target": "es2022",
"allowJs": true,
"noImplicitAny": true,
"moduleResolution": "node",
"importHelpers": true,
"isolatedModules": true,
"strictNullChecks": true,
"types": ["node"],
"lib": ["DOM", "ES5", "ES6", "ES7"]
},
"include": ["**/*.ts", "**/*.svelte"]
}