diff --git a/apps/frontend/tsconfig.json b/apps/frontend/tsconfig.json index acda453..e9299cb 100644 --- a/apps/frontend/tsconfig.json +++ b/apps/frontend/tsconfig.json @@ -12,6 +12,7 @@ "noEmit": true, "jsx": "react-jsx", "strict": true, + "types": ["vitest/globals"], "noUnusedLocals": false, "noUnusedParameters": false, "noFallthroughCasesInSwitch": true, @@ -20,5 +21,6 @@ } }, "include": ["src"], + "exclude": ["src/**/*.test.ts", "src/**/*.test.tsx", "src/test/**"], "references": [{ "path": "./tsconfig.node.json" }] }