fix: exclude type challenges from coverage
Node.js CI / Lint and Test (push) Successful in 42s

This commit is contained in:
2025-11-22 18:48:34 -08:00
parent 4997db4675
commit f54cbbb613
+1 -1
View File
@@ -6,7 +6,7 @@ export default defineConfig({
provider: 'v8', provider: 'v8',
reporter: ['text'], reporter: ['text'],
include: ['src/**/*.ts'], include: ['src/**/*.ts'],
exclude: ['src/**/*.spec.ts'], exclude: ['src/**/*.spec.ts', 'src/type-challenges/**/*.ts'],
thresholds: { thresholds: {
statements: 100, statements: 100,
branches: 100, branches: 100,