mirror of
https://github.com/modelstudioai/cli.git
synced 2026-09-14 19:49:23 +08:00
23 lines
352 B
TypeScript
23 lines
352 B
TypeScript
import { defineConfig } from "vite-plus";
|
|
|
|
export default defineConfig({
|
|
test: {
|
|
globalSetup: "../e2e/src/global-setup.ts",
|
|
testTimeout: 60_000,
|
|
hookTimeout: 60_000,
|
|
},
|
|
pack: {
|
|
minify: true,
|
|
dts: {
|
|
tsgo: true,
|
|
},
|
|
},
|
|
lint: {
|
|
options: {
|
|
typeAware: true,
|
|
typeCheck: true,
|
|
},
|
|
},
|
|
fmt: {},
|
|
});
|