Merge pull request #225 from oke-py/fix/tsconfig-exclude-vitest-config

fix(tsconfig): exclude vitest.config.ts from TypeScript compilation
This commit is contained in:
Naoki Oketani
2025-05-03 11:01:39 +09:00
committed by GitHub

View File

@@ -8,5 +8,5 @@
"noImplicitAny": true, /* Raise error on expressions and declarations with an implied 'any' type. */
"esModuleInterop": true /* Enables emit interoperability between CommonJS and ES Modules via creation of namespace objects for all imports. Implies 'allowSyntheticDefaultImports'. */
},
"exclude": ["node_modules", "**/*.test.ts"]
"exclude": ["node_modules", "**/*.test.ts", "vitest.config.ts"]
}