[Dev] Enable typechecking for Vite config files (#6853)

This commit is contained in:
NightKev 2025-12-16 23:36:39 -06:00 committed by GitHub
parent 943ddf8afc
commit bde0f65eed
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -78,12 +78,5 @@
}, },
// Exclude checking for script JS files as those are covered by the folder's `jsconfig.json` // Exclude checking for script JS files as those are covered by the folder's `jsconfig.json`
"include": ["**/*.ts", "**/*.d.ts"], "include": ["**/*.ts", "**/*.d.ts"],
"exclude": [ "exclude": ["node_modules", "dist"]
"node_modules",
"dist",
"vite.config.ts",
"vitest.config.ts",
"vitest.workspace.ts",
"assets/service-worker.js"
]
} }