
* update prettier and syncpack * update turbo * Update various dev deps * improve syncpack config * remove c8 reporter from invoices * fix test packages * Fix invocies test
12 lines
272 B
TypeScript
12 lines
272 B
TypeScript
import react from "@vitejs/plugin-react";
|
|
import { defineConfig } from "vitest/config";
|
|
|
|
// https://vitejs.dev/config/
|
|
export default defineConfig({
|
|
plugins: [react()],
|
|
test: {
|
|
environment: "jsdom",
|
|
setupFiles: "./src/setup-tests.ts",
|
|
css: false,
|
|
},
|
|
});
|