Spaces:
Sleeping
Sleeping
File size: 228 Bytes
05c5ed5 | 1 2 3 4 5 6 7 8 9 10 11 | import { defineConfig } from "vitest/config";
import tsconfigPaths from "vite-tsconfig-paths";
export default defineConfig({
plugins: [tsconfigPaths()],
test: {
exclude: ["**/tests/**", "**/node_modules/**"],
},
});
|