mirror of
https://github.com/poanse/obsidian-taskmap.git
synced 2026-07-22 14:00:24 +00:00
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
20 lines
452 B
JSON
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"]
|
|
}
|