mirror of
https://github.com/pdriggett/practice-planner.git
synced 2026-07-22 07:47:14 +00:00
Track every skill ever used in a new skillHistory setting that is never auto-pruned, so skills removed from the active list are still available. - EditorSuggest dropdown for the skill:: inline field, sourced from the union of active skills and history - Capture skills as they're added: settings edits (on blur), autocomplete selection, and skills typed inline (via vault modify, debounced, not per keystroke) - Scan existing notes into history on load and via a new "Rebuild skill history from notes" command - Settings UI lists the full history with per-entry and bulk delete - Bump tsconfig target/lib to ES2018 for String.padStart
22 lines
364 B
JSON
22 lines
364 B
JSON
{
|
|
"compilerOptions": {
|
|
"baseUrl": ".",
|
|
"inlineSourceMap": true,
|
|
"inlineSources": true,
|
|
"module": "ESNext",
|
|
"target": "ES2018",
|
|
"allowJs": true,
|
|
"noImplicitAny": true,
|
|
"moduleResolution": "node",
|
|
"importHelpers": true,
|
|
"isolatedModules": true,
|
|
"strictNullChecks": true,
|
|
"lib": [
|
|
"DOM",
|
|
"ES2018"
|
|
]
|
|
},
|
|
"include": [
|
|
"**/*.ts"
|
|
]
|
|
}
|