callumalpass_tasknotes/tsconfig.json
callumalpass ef8d9eb750 Add CMD/Ctrl+Enter keyboard shortcuts to modals
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.
2025-11-20 23:37:38 +11:00

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"
]
}