[Vuejs]-Why does vue-tsc think it should look for Vue Test Utils types in my custom types file?

0👍

According to this reply to my bug report on the Vue Test Utils Github, the issue stems from relative imports and should be fixed in the next release. I’m using ^2.0.0-rc.18 so that probably means ^2.0.0-rc.19.

In the mean time, adding "skipLibCheck": true, to the compilerOptions in my tsconfig.json made the build work without error.

Leave a comment