70957e462a
- Add exclude pattern for **/*.test.ts and **/*.test.tsx in tsconfig.json - Fixes deployment build failures caused by type mismatches in test mocks
18 lines
409 B
JSON
18 lines
409 B
JSON
{
|
|
"compilerOptions": {
|
|
"target": "ES2020",
|
|
"lib": ["ES2020", "DOM", "DOM.Iterable"],
|
|
"module": "ESNext",
|
|
"moduleResolution": "Bundler",
|
|
"jsx": "react-jsx",
|
|
"strict": true,
|
|
"noEmit": true,
|
|
"skipLibCheck": true,
|
|
"resolveJsonModule": true,
|
|
"isolatedModules": true,
|
|
"types": ["vite/client"]
|
|
},
|
|
"include": ["src"],
|
|
"exclude": ["**/*.test.ts", "**/*.test.tsx"]
|
|
}
|