initial commit
This commit is contained in:
38
vite.config.ts
Normal file
38
vite.config.ts
Normal file
@@ -0,0 +1,38 @@
|
||||
import { defineConfig } from "vite-plus";
|
||||
|
||||
export default defineConfig({
|
||||
lint: {
|
||||
ignorePatterns: [
|
||||
"node_modules/**",
|
||||
"**/node_modules/**",
|
||||
"apps/web/build/**",
|
||||
"apps/web/.react-router/**",
|
||||
"apps/native/.expo/**",
|
||||
"apps/native/dist/**",
|
||||
"apps/native/web-build/**",
|
||||
"packages/backend/convex/_generated/**",
|
||||
],
|
||||
options: {
|
||||
typeAware: false,
|
||||
typeCheck: false,
|
||||
},
|
||||
},
|
||||
fmt: {
|
||||
ignorePatterns: [
|
||||
"node_modules/**",
|
||||
"**/node_modules/**",
|
||||
"apps/web/build/**",
|
||||
"apps/web/.react-router/**",
|
||||
"apps/native/.expo/**",
|
||||
"apps/native/dist/**",
|
||||
"apps/native/web-build/**",
|
||||
"packages/backend/convex/_generated/**",
|
||||
],
|
||||
singleQuote: false,
|
||||
semi: true,
|
||||
sortPackageJson: true,
|
||||
},
|
||||
staged: {
|
||||
"*.{js,ts,jsx,tsx,vue,svelte,json,jsonc,css,md}": "vp check --fix",
|
||||
},
|
||||
});
|
||||
Reference in New Issue
Block a user