keycloak_theme/vitest.config.ts

12 lines
320 B
TypeScript
Raw Permalink Normal View History

import { defineConfig } from "vitest/config";
import { resolve as pathResolve } from "path";
2023-03-30 02:45:43 -06:00
export default defineConfig({
2024-05-20 15:48:51 +02:00
test: {
alias: {
keycloakify: pathResolve(__dirname, "./src")
},
2024-05-20 15:48:51 +02:00
watchExclude: ["**/node_modules/**", "**/dist/**", "**/sample_react_project/**"]
2023-03-30 02:45:43 -06:00
}
});