chore: scaffold devflow workspace

This commit is contained in:
chungyeong
2026-05-09 22:22:13 +09:00
commit 6bd4c9382a
14 changed files with 4336 additions and 0 deletions

11
vitest.workspace.ts Normal file
View File

@@ -0,0 +1,11 @@
import { defineWorkspace } from "vitest/config";
export default defineWorkspace([
{
test: {
name: "root",
include: ["tests/**/*.test.ts"],
environment: "node",
},
},
]);