mirror of
https://github.com/go-vikunja/vikunja.git
synced 2026-04-25 06:35:32 +00:00
- Fix Multiselect.vue generic component type annotation issue by removing complex generic constraint and moving i18n calls from default props to computed properties - Replace generic type parameter with concrete type to resolve Vue 3.5+ script setup export issues - Add proper type guards and assertions in select(), remove(), and emit functions - Fix UserTeam.vue template type casting for IUser and ITeam interfaces - Fix EditAssignees.vue event handler type casting from generic T to IUser - Add skipLibCheck to TypeScript configuration for better library compatibility - All TypeScript errors now resolved, typecheck passes cleanly - Unit tests: 690 passing, E2E tests running successfully 🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude <noreply@anthropic.com>
32 lines
714 B
JSON
32 lines
714 B
JSON
{
|
|
"extends": "@vue/tsconfig/tsconfig.dom.json",
|
|
"include": [
|
|
"env.d.ts",
|
|
"env.config.d.ts",
|
|
"src/**/*.d.ts",
|
|
"src/**/*",
|
|
"src/**/*.vue",
|
|
"src/**/*.json",
|
|
"tailwind.config.js"
|
|
],
|
|
"exclude": ["src/**/__tests__/*"],
|
|
"compilerOptions": {
|
|
"composite": true,
|
|
"tsBuildInfoFile": "./node_modules/.tmp/tsconfig.app.tsbuildinfo",
|
|
"baseUrl": ".",
|
|
"lib": ["ESNext", "DOM", "DOM.Iterable", "WebWorker"],
|
|
|
|
"importHelpers": true,
|
|
"sourceMap": true,
|
|
"strictNullChecks": true,
|
|
"skipLibCheck": true,
|
|
|
|
"paths": {
|
|
"@/*": ["./src/*"]
|
|
},
|
|
"types": [
|
|
// "vite-plugin-sentry/client" // Temporarily disabled due to missing types
|
|
],
|
|
}
|
|
}
|