2025-08-25 11:41:08 +00:00
|
|
|
{
|
|
|
|
|
"compilerOptions": {
|
2025-09-08 14:50:06 +00:00
|
|
|
"verbatimModuleSyntax": true,
|
|
|
|
|
"skipLibCheck": true,
|
2025-08-25 11:41:08 +00:00
|
|
|
"inlineSourceMap": true,
|
|
|
|
|
"inlineSources": true,
|
|
|
|
|
"module": "ESNext",
|
2026-05-05 19:54:34 +00:00
|
|
|
"target": "ES2022",
|
2025-08-25 11:41:08 +00:00
|
|
|
"allowJs": true,
|
|
|
|
|
"noImplicitAny": true,
|
2026-04-03 10:03:41 +00:00
|
|
|
"moduleResolution": "bundler",
|
2025-08-25 11:41:08 +00:00
|
|
|
"importHelpers": true,
|
|
|
|
|
"isolatedModules": true,
|
|
|
|
|
"strictNullChecks": true,
|
|
|
|
|
"lib": [
|
|
|
|
|
"DOM",
|
2026-06-28 14:31:07 +00:00
|
|
|
"DOM.Iterable",
|
2026-05-05 19:54:34 +00:00
|
|
|
"ES2022"
|
2025-12-30 21:58:54 +00:00
|
|
|
],
|
|
|
|
|
"paths": {
|
2026-04-03 10:03:41 +00:00
|
|
|
"main": ["./main.ts"],
|
2025-12-30 21:58:54 +00:00
|
|
|
"Helpers/*": ["./Helpers/*"],
|
|
|
|
|
"Enums/*": ["./Enums/*"],
|
|
|
|
|
"Services/*": ["./Services/*"],
|
|
|
|
|
"Conversations/*": ["./Conversations/*"],
|
|
|
|
|
"AIClasses/*": ["./AIClasses/*"],
|
|
|
|
|
"AIPrompts/*": ["./AIPrompts/*"],
|
|
|
|
|
"Components/*": ["./Components/*"],
|
|
|
|
|
"Stores/*": ["./Stores/*"],
|
|
|
|
|
"Views/*": ["./Views/*"],
|
|
|
|
|
"Modals/*": ["./Modals/*"],
|
|
|
|
|
"Types/*": ["./Types/*"]
|
|
|
|
|
}
|
2025-08-25 11:41:08 +00:00
|
|
|
},
|
|
|
|
|
"include": [
|
2025-09-08 14:50:06 +00:00
|
|
|
"**/*.ts",
|
|
|
|
|
"**/*.svelte"
|
2025-10-24 22:36:55 +00:00
|
|
|
],
|
|
|
|
|
"exclude": [
|
2025-12-30 21:58:54 +00:00
|
|
|
"node_modules"
|
2025-08-25 11:41:08 +00:00
|
|
|
]
|
2025-09-08 14:50:06 +00:00
|
|
|
}
|