17 lines
324 B
TypeScript
17 lines
324 B
TypeScript
import { defineConfig } from "vitest/config";
|
|
|
|
export default defineConfig({
|
|
test: {
|
|
includeSource: ["src/**/*.{ts,mts,cts}"],
|
|
typecheck: {
|
|
include: [
|
|
"src/**/*.{ts,mts,cts}",
|
|
"tests/**/*.test.{ts,mts,cts}",
|
|
],
|
|
tsconfig: "tsconfig.app.json",
|
|
enabled: true,
|
|
ignoreSourceErrors: true,
|
|
},
|
|
},
|
|
});
|