Creating a project with typescript and vitest
Vue.js - The Progressive JavaScript Framework
√ Add TypeScript? ... Yes
√ Add Vitest for Unit Testing? ... Yes
making a mistake somewhere and then running type-check script reports the errors twice:

This is due to the fact that "src" is included in both tsconfig.app.json and tsconfig.vitest.json. This was introduced with #274
Not sure how to fix this. It's nice to have a separate tsconfig for vitest, but not sure it's worth it if it double reports the errors because of it.
Creating a project with typescript and vitest
making a mistake somewhere and then running
type-checkscript reports the errors twice:This is due to the fact that "src" is included in both
tsconfig.app.jsonandtsconfig.vitest.json. This was introduced with #274Not sure how to fix this. It's nice to have a separate tsconfig for vitest, but not sure it's worth it if it double reports the errors because of it.