Integrate crabrl parser into taxonomy hydration

This commit is contained in:
2026-03-16 15:18:01 -04:00
parent cf084793ed
commit a58b07456e
23 changed files with 4696 additions and 2466 deletions

15
vitest.config.mts Normal file
View File

@@ -0,0 +1,15 @@
import { resolve } from "node:path";
import { defineConfig } from "vitest/config";
export default defineConfig({
resolve: {
alias: {
"@": resolve(process.cwd(), "."),
"bun:test": resolve(process.cwd(), "test/bun-test-shim.ts"),
},
},
test: {
environment: "node",
setupFiles: ["./test/vitest.setup.ts"],
},
});