mirror of
https://github.com/andy-stack/vaultkeeper-ai.git
synced 2026-07-22 16:30:27 +00:00
- Remove unused `path` property from Conversation class and its test - Initialize `items` and `conversations` arrays in ConversationHistoryModal - Use `Exception.messageFrom()` for safer error serialization in StreamingMarkdownService - Fix redundant type cast in obsidian mock's Events.on() - Bump @anthropic-ai/sdk, @google/genai, openai, esbuild, svelte, typescript, vitest, and other minor deps
43 lines
No EOL
983 B
JSON
43 lines
No EOL
983 B
JSON
{
|
|
"compilerOptions": {
|
|
"verbatimModuleSyntax": true,
|
|
"skipLibCheck": true,
|
|
"inlineSourceMap": true,
|
|
"inlineSources": true,
|
|
"module": "ESNext",
|
|
"target": "ES2020",
|
|
"allowJs": true,
|
|
"noImplicitAny": true,
|
|
"moduleResolution": "bundler",
|
|
"importHelpers": true,
|
|
"isolatedModules": true,
|
|
"strictNullChecks": true,
|
|
"lib": [
|
|
"DOM",
|
|
"ES5",
|
|
"ES6",
|
|
"ES7"
|
|
],
|
|
"paths": {
|
|
"main": ["./main.ts"],
|
|
"Helpers/*": ["./Helpers/*"],
|
|
"Enums/*": ["./Enums/*"],
|
|
"Services/*": ["./Services/*"],
|
|
"Conversations/*": ["./Conversations/*"],
|
|
"AIClasses/*": ["./AIClasses/*"],
|
|
"AIPrompts/*": ["./AIPrompts/*"],
|
|
"Components/*": ["./Components/*"],
|
|
"Stores/*": ["./Stores/*"],
|
|
"Views/*": ["./Views/*"],
|
|
"Modals/*": ["./Modals/*"],
|
|
"Types/*": ["./Types/*"]
|
|
}
|
|
},
|
|
"include": [
|
|
"**/*.ts",
|
|
"**/*.svelte"
|
|
],
|
|
"exclude": [
|
|
"node_modules"
|
|
]
|
|
} |