2024-02-07 20:01:26 +01:00
|
|
|
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")
|
2023-03-30 22:09:27 +00:00
|
|
|
},
|
2024-05-20 15:48:51 +02:00
|
|
|
watchExclude: ["**/node_modules/**", "**/dist/**", "**/sample_react_project/**"]
|
2023-03-30 02:45:43 -06:00
|
|
|
}
|
|
|
|
});
|