Files
modelstudioai__cli/vite.config.ts
T
2026-05-28 18:37:07 +08:00

17 lines
383 B
TypeScript

import { defineConfig } from "vite-plus";
export default defineConfig({
test: {
globalSetup: "./packages/cli/tests/e2e/global-setup.ts",
testTimeout: 60_000,
hookTimeout: 60_000,
},
staged: {
"*.{js,mjs,cjs,ts,mts,cts,jsx,tsx,json,yaml,yml}": "vp check --fix",
},
lint: { options: { typeAware: true, typeCheck: true } },
run: {
cache: true,
},
});