mirror of
https://github.com/alkimake/paperclip.git
synced 2026-06-14 01:50:39 +09:00
9 lines
158 B
TypeScript
9 lines
158 B
TypeScript
|
|
import { defineConfig } from "vitest/config";
|
||
|
|
|
||
|
|
export default defineConfig({
|
||
|
|
test: {
|
||
|
|
include: ["tests/**/*.spec.ts"],
|
||
|
|
environment: "node",
|
||
|
|
},
|
||
|
|
});
|