mirror of
https://github.com/callumalpass/tasknotes.git
synced 2026-07-22 12:50:26 +00:00
Added keyboard event handlers to all modals to enable quick save/submit with CMD/Ctrl+Enter. Each modal now properly registers and cleans up its keyboard handler on open/close. Also added kanban card container styles for scrolling and drag cursor states, and removed deprecated tsconfig ignoreDeprecations flag.
48 lines
1 KiB
JSON
48 lines
1 KiB
JSON
{
|
|
"compilerOptions": {
|
|
"baseUrl": ".",
|
|
"inlineSourceMap": true,
|
|
"inlineSources": true,
|
|
"module": "ESNext",
|
|
"target": "ES6",
|
|
"allowJs": true,
|
|
"noImplicitAny": true,
|
|
"moduleResolution": "node",
|
|
"importHelpers": true,
|
|
"isolatedModules": true,
|
|
"strictNullChecks": true,
|
|
"esModuleInterop": true,
|
|
"allowSyntheticDefaultImports": true,
|
|
"experimentalDecorators": true,
|
|
"emitDecoratorMetadata": true,
|
|
"skipLibCheck": true,
|
|
"noImplicitReturns": false,
|
|
"noImplicitThis": false,
|
|
"paths": {
|
|
"obsidian": ["./node_modules/obsidian"]
|
|
},
|
|
"types": [
|
|
"obsidian-typings"
|
|
],
|
|
"lib": [
|
|
"DOM",
|
|
"DOM.Iterable",
|
|
"ES5",
|
|
"ES6",
|
|
"ES7"
|
|
]
|
|
},
|
|
"include": [
|
|
"src/**/*.ts"
|
|
],
|
|
"exclude": [
|
|
"tests/**/*",
|
|
"node_modules/**/*",
|
|
"src/views/AgendaView.ts",
|
|
"src/views/TaskListView.ts",
|
|
"src/views/KanbanView.ts",
|
|
"src/views/MiniCalendarView.ts",
|
|
"src/views/AdvancedCalendarView.ts",
|
|
"src/views/NotesView.ts"
|
|
]
|
|
}
|