mirror of
https://github.com/DayuanJiang/next-ai-draw-io.git
synced 2026-09-01 17:10:24 +08:00
12 lines
387 B
TypeScript
12 lines
387 B
TypeScript
|
|
import { defineConfig } from "vitest/config"
|
||
|
|
|
||
|
|
export default defineConfig({
|
||
|
|
test: {
|
||
|
|
include: ["tests/**/*.test.ts"],
|
||
|
|
environment: "node",
|
||
|
|
// The package source uses Node16 module resolution with explicit .js
|
||
|
|
// extensions in imports. Vitest+esbuild handles the .ts→.js mapping
|
||
|
|
// transparently, so no extra alias config is needed.
|
||
|
|
},
|
||
|
|
})
|