Compare commits

...
Author SHA1 Message Date
Arafatkatze 0be4ce8bc1 Fixing circuit breaker 2026-01-29 17:39:47 -08:00
Arafatkatze 0d1d344b12 fix: remove tsconfig.node.json from project references
vite.config.ts doesn't need to be type-checked during the build.
This avoids errors when vitest types aren't available.
2026-01-29 17:34:16 -08:00
Arafatkatze 14bb3ba0d0 fix: exclude storybook files from tsconfig.app.json build 2026-01-29 17:33:23 -08:00
Arafatkatze 40ad1cbaf6 fix: webview-ui tsconfig build errors
- Add 'incremental: true' to satisfy tsBuildInfoFile requirement
- Remove noUncheckedSideEffectImports (TS 5.6+ feature not available in CI)
- Remove test-only types from tsconfig.app.json

This fixes the CI build failures introduced by PR #8931.
2026-01-29 17:29:26 -08:00
3 changed files with 6 additions and 10 deletions
+4 -5
View File
@@ -1,5 +1,6 @@
{
"compilerOptions": {
"incremental": true,
"tsBuildInfoFile": "./node_modules/.tmp/tsconfig.app.tsbuildinfo",
"target": "ES2022",
"useDefineForClassFields": true,
@@ -8,10 +9,7 @@
"DOM",
"DOM.Iterable"
],
"types": [
"vitest/globals",
"@testing-library/jest-dom"
],
"types": [],
"module": "ESNext",
"skipLibCheck": true,
@@ -26,7 +24,6 @@
/* Linting */
"strict": true,
"noFallthroughCasesInSwitch": true,
"noUncheckedSideEffectImports": true,
/* Aliasing */
"baseUrl": ".",
@@ -56,6 +53,8 @@
"src/**/*.test.ts",
"src/**/*.spec.tsx",
"src/**/*.spec.ts",
"src/**/*.stories.tsx",
"src/**/*.stories.ts",
"src/**/__tests__/**"
]
}
-3
View File
@@ -3,9 +3,6 @@
"references": [
{
"path": "./tsconfig.app.json"
},
{
"path": "./tsconfig.node.json"
}
],
"compilerOptions": {
+2 -2
View File
@@ -1,5 +1,6 @@
{
"compilerOptions": {
"incremental": true,
"tsBuildInfoFile": "./node_modules/.tmp/tsconfig.node.tsbuildinfo",
"target": "ES2022",
"lib": [
@@ -19,8 +20,7 @@
"strict": true,
"noUnusedLocals": true,
"noUnusedParameters": true,
"noFallthroughCasesInSwitch": true,
"noUncheckedSideEffectImports": true
"noFallthroughCasesInSwitch": true
},
"include": [
"vite.config.ts"