mirror of
https://github.com/Dokploy/dokploy
synced 2025-06-26 18:27:59 +00:00
17 lines
414 B
TypeScript
17 lines
414 B
TypeScript
import tsconfigPaths from "vite-tsconfig-paths";
|
|
import { defineConfig } from "vitest/config";
|
|
|
|
export default defineConfig({
|
|
plugins: [
|
|
tsconfigPaths({
|
|
root: "./",
|
|
projects: ["tsconfig.json"],
|
|
}),
|
|
],
|
|
test: {
|
|
include: ["__test__/**/*.test.ts"], // Incluir solo los archivos de test en el directorio __test__
|
|
exclude: ["**/node_modules/**", "**/dist/**", "**/.docker/**"],
|
|
pool: "forks",
|
|
},
|
|
});
|