mirror of
https://github.com/mountain-loop/yaak.git
synced 2026-03-25 19:01:38 +01:00
17 lines
359 B
TypeScript
17 lines
359 B
TypeScript
import { defineConfig } from "vite-plus";
|
|
|
|
export default defineConfig({
|
|
lint: {
|
|
ignorePatterns: ["npm/**", "crates/yaak-templates/pkg/**", "**/bindings/gen_*.ts"],
|
|
options: {
|
|
typeAware: true,
|
|
},
|
|
rules: {
|
|
"typescript/no-explicit-any": "error",
|
|
},
|
|
},
|
|
test: {
|
|
exclude: ["**/node_modules/**", "**/flatpak/**"],
|
|
},
|
|
});
|