diff --git a/frontend/package.json b/frontend/package.json index 7e48d5a3..63f66b7b 100644 --- a/frontend/package.json +++ b/frontend/package.json @@ -5,7 +5,7 @@ "private": true, "scripts": { "dev": "vite", - "build": "tsc -b && vite build", + "build": "vite build", "preview": "vite preview", "test": "vitest run", "test:ui": "vitest --ui", diff --git a/frontend/tsconfig.app.json b/frontend/tsconfig.app.json index 6f1747ba..a7f8cc6d 100644 --- a/frontend/tsconfig.app.json +++ b/frontend/tsconfig.app.json @@ -20,5 +20,6 @@ "noFallthroughCasesInSwitch": true, "noUncheckedSideEffectImports": true }, - "include": ["src"] + "include": ["src"], + "exclude": ["src/**/__tests__/**", "src/**/*.test.ts", "src/**/*.test.tsx"] }