mirror of
https://github.com/Infisical/infisical.git
synced 2026-01-08 23:18:05 -05:00
18 lines
300 B
TypeScript
18 lines
300 B
TypeScript
import path from "path";
|
|
import { defineConfig } from "vitest/config";
|
|
|
|
export default defineConfig({
|
|
test: {
|
|
globals: true,
|
|
env: {
|
|
NODE_ENV: "test"
|
|
},
|
|
include: ["./src/**/*.test.ts"]
|
|
},
|
|
resolve: {
|
|
alias: {
|
|
"@app": path.resolve(__dirname, "./src")
|
|
}
|
|
}
|
|
});
|