Compare commits

..

No commits in common. "7355a8afba1f03aae04617817ac05262c0c4f123" and "d99a2b151c27047cea08ddf215ce60f6d98e8030" have entirely different histories.

2 changed files with 1 additions and 32 deletions

View File

@ -36,13 +36,6 @@
".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__/**/*"
] ]
} }

View File

@ -1,24 +0,0 @@
{
"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"
]
}