Spaces:
Running
Running
| 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, | |
| }, | |
| }, | |
| }); | |