generated from coulomb/repo-seed
Bootstrap @citation-evidence/engine as a standalone TypeScript package with shared types and engine services copied from the umbrella MVP. All 89 tests pass with lint and typecheck clean.
18 lines
428 B
TypeScript
18 lines
428 B
TypeScript
import { defineConfig } from "vitest/config";
|
|
import { dirname, resolve } from "node:path";
|
|
import { fileURLToPath } from "node:url";
|
|
|
|
const __dirname = dirname(fileURLToPath(import.meta.url));
|
|
|
|
export default defineConfig({
|
|
resolve: {
|
|
alias: {
|
|
"@shared": resolve(__dirname, "src/shared"),
|
|
"@engine": resolve(__dirname, "src/engine"),
|
|
},
|
|
},
|
|
test: {
|
|
environment: "node",
|
|
globals: false,
|
|
},
|
|
}); |