Compare commits
3 Commits
d99a2b151c
...
7355a8afba
| Author | SHA1 | Date | |
|---|---|---|---|
| 7355a8afba | |||
| 4d81f6875a | |||
|
|
a1049623c8 |
@ -36,6 +36,13 @@
|
|||||||
".next/dev/types/**/*.ts"
|
".next/dev/types/**/*.ts"
|
||||||
],
|
],
|
||||||
"exclude": [
|
"exclude": [
|
||||||
"node_modules"
|
"node_modules",
|
||||||
|
"vitest.config.ts",
|
||||||
|
"src/tests/**/*",
|
||||||
|
"**/*.test.ts",
|
||||||
|
"**/*.test.tsx",
|
||||||
|
"**/*.spec.ts",
|
||||||
|
"**/*.spec.tsx",
|
||||||
|
"**/__tests__/**/*"
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
|
|||||||
24
tsconfig.vitest.json
Normal file
24
tsconfig.vitest.json
Normal file
@ -0,0 +1,24 @@
|
|||||||
|
{
|
||||||
|
"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"
|
||||||
|
]
|
||||||
|
}
|
||||||
Loading…
Reference in New Issue
Block a user