Files
vikunja/frontend/tsconfig.app.json
kolaente c1f0b2c81f chore(deps): update typescript to v6
Bump typescript from 5.9.3 to 6.0.3.

TS 6 changes that required source fixes:
- baseUrl is deprecated and now a hard error (TS5101). Dropped the unused
  baseUrl from tsconfig.app.json; the @/* paths are relative and resolve
  without it (tsconfig.vitest.json inherits this).
- vite.config.ts referenced ImportMetaEnv for getSentryConfig's parameter,
  but it is only ever called with loadEnv()'s Record<string, string>. Typed
  the parameter accordingly, matching its caller and the other config helpers.

Claude-Session: https://claude.ai/code/session_01AHD9BmNcUfgBZdPveZRa8z
2026-07-02 16:27:58 +00:00

28 lines
581 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",
"lib": ["ESNext", "DOM", "DOM.Iterable", "WebWorker"],
"importHelpers": true,
"sourceMap": true,
"strictNullChecks": true,
"paths": {
"@/*": ["./src/*"]
},
"types": [],
}
}