Skip to content

Commit

Permalink
add vitest config file
Browse files Browse the repository at this point in the history
  • Loading branch information
Sawyer Burnett committed Mar 18, 2024
1 parent d565fd4 commit 90ee89c
Showing 1 changed file with 13 additions and 0 deletions.
13 changes: 13 additions & 0 deletions packages/groqd/vitest.config.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
import { configDefaults, defineConfig } from "vitest/config";

export default defineConfig({
test: {
typecheck: {
enabled: true,
checker: "tsc",
allowJs: false,
include: ["**.test.ts"],
},
exclude: [...configDefaults.exclude],
},
});

0 comments on commit 90ee89c

Please sign in to comment.