Spaces:
Running
Running
File size: 293 Bytes
b560e98 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 | import { defineConfig } from "vitest/config";
export default defineConfig({
test: {
include: ["tests/**/*.test.ts"],
environment: "node",
},
resolve: {
alias: {
"story-engine": new URL("./packages/story-engine/src/index.ts", import.meta.url).pathname,
},
},
});
|