mirror of
https://github.com/andy-stack/vaultkeeper-ai.git
synced 2026-07-22 16:30:27 +00:00
- Remove AIFunctionDefinitions mock from AI class tests - Update IPrompt import path to AIPrompts directory - Remove deprecated streamRequest boolean parameter - Fix error handling assertions in AIFunctionService tests - Remove ChatService sanitization and assistant message tests - Add path aliases to tsconfig and vitest config
43 lines
No EOL
968 B
JSON
43 lines
No EOL
968 B
JSON
{
|
|
"compilerOptions": {
|
|
"verbatimModuleSyntax": true,
|
|
"skipLibCheck": true,
|
|
"baseUrl": ".",
|
|
"inlineSourceMap": true,
|
|
"inlineSources": true,
|
|
"module": "ESNext",
|
|
"target": "ES6",
|
|
"allowJs": true,
|
|
"noImplicitAny": true,
|
|
"moduleResolution": "node",
|
|
"importHelpers": true,
|
|
"isolatedModules": true,
|
|
"strictNullChecks": true,
|
|
"lib": [
|
|
"DOM",
|
|
"ES5",
|
|
"ES6",
|
|
"ES7"
|
|
],
|
|
"paths": {
|
|
"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"
|
|
]
|
|
} |