Hi!
I just made a fresh install of Vite v4.4.2 by using npm init vue@latest.
Sadly I have a TS Error in vitest.config.ts:7
viteConfig,
defineConfig({
test: {
environment: 'jsdom',
exclude: [...configDefaults.exclude, 'e2e/*'],
root: fileURLToPath(new URL('./', import.meta.url)),
transformMode: {
web: [/\.[jt]sx$/]
}
}
})
)
The Error says the following.
S2345: Argument of type 'UserConfigExport' is not assignable to parameter of type 'UserConfig | Promise<UserConfig>'. Type 'UserConfigFn' is not assignable to type 'UserConfig | Promise<UserConfig>'.
Question:
- Can I fix it, or is it only able inside the Vite Package itself? Is there an Update to fix that?
- Is it bad to have a TS error (like that) on a fresh install. Should I worry about TS Errors or are they not important?