mirror of
https://github.com/AmruthPillai/Reactive-Resume.git
synced 2025-11-10 04:22:27 +10:00
15 lines
354 B
TypeScript
15 lines
354 B
TypeScript
import { nxViteTsPaths } from "@nx/vite/plugins/nx-tsconfig-paths.plugin";
|
|
import { defineConfig } from "vite";
|
|
|
|
export default defineConfig({
|
|
cacheDir: "../../node_modules/.vite/dto",
|
|
|
|
plugins: [nxViteTsPaths()],
|
|
|
|
test: {
|
|
globals: true,
|
|
environment: "jsdom",
|
|
include: ["src/**/*.{test,spec}.{js,mjs,cjs,ts,mts,cts,jsx,tsx}"],
|
|
},
|
|
});
|