16 lines
271 B
TypeScript
16 lines
271 B
TypeScript
import { defineConfig } from "vitest/config";
|
|
|
|
export default defineConfig({
|
|
esbuild: {
|
|
tsconfigRaw: {
|
|
compilerOptions: {
|
|
experimentalDecorators: true,
|
|
},
|
|
},
|
|
},
|
|
test: {
|
|
environment: "node",
|
|
include: ["src/**/*spec.ts"],
|
|
},
|
|
});
|