mirror of
https://github.com/go-vikunja/vikunja.git
synced 2026-07-16 06:42:23 -05:00
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
28 lines
581 B
JSON
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": [],
|
|
}
|
|
}
|