- Add markdown-body base styles in dashboard styles.css - Remove backdrop and enable scroll on task detail prompt rendering - Add TaskDetailModal unit tests with vitest jsdom environment - Update vitest config with globals and jsdom support - Clean up unused test files and legacy concurrency module
18 lines
410 B
TypeScript
18 lines
410 B
TypeScript
import { defineConfig } from "vitest/config";
|
|
import react from "@vitejs/plugin-react";
|
|
import { resolve } from "node:path";
|
|
|
|
export default defineConfig({
|
|
plugins: [react()],
|
|
resolve: {
|
|
alias: {
|
|
"@hai/core": resolve(__dirname, "../core/src/types.ts"),
|
|
},
|
|
},
|
|
test: {
|
|
environment: "jsdom",
|
|
globals: true,
|
|
include: ["app/**/*.test.{ts,tsx}", "src/**/*.test.{ts,tsx}"],
|
|
},
|
|
});
|