profit-planet-frontend/tsconfig.vitest.json

24 lines
427 B
JSON

{
"extends": "./tsconfig.json",
"compilerOptions": {
"types": [
"vitest/globals",
"@testing-library/jest-dom",
"node"
]
},
"include": [
"vitest.config.ts",
"src/tests/**/*.ts",
"src/tests/**/*.tsx",
"**/*.test.ts",
"**/*.test.tsx",
"**/*.spec.ts",
"**/*.spec.tsx",
"**/__tests__/**/*.ts",
"**/__tests__/**/*.tsx"
],
"exclude": [
"node_modules"
]
}