13 lines
222 B
TypeScript
13 lines
222 B
TypeScript
|
|
import { defineConfig } from "vite-plus";
|
||
|
|
|
||
|
|
export default defineConfig({
|
||
|
|
staged: {
|
||
|
|
"*": "vp check --fix",
|
||
|
|
},
|
||
|
|
fmt: {},
|
||
|
|
lint: { options: { typeAware: true, typeCheck: true } },
|
||
|
|
run: {
|
||
|
|
cache: true,
|
||
|
|
},
|
||
|
|
});
|