@knapsack/app
Version:
Build Design Systems with Knapsack
14 lines (12 loc) • 320 B
text/typescript
import { defineConfig } from 'vitest/config';
// https://vitest.dev/config/
export default defineConfig({
test: {
// Include both .ts and .mts files for tests
include: ['src/**/*.{vtest,vitest}.{ts,tsx,mts,mtsx}'],
setupFiles: ['./vitest.setup.mts'],
typecheck: {
enabled: true,
},
},
});