vue-tsc is checking libs
Closed this issue · 1 comments
Blackfaded commented
Hey there!
I have a dependency (vue-currency-input) which has a ts error.
With the new vue-tsc version the lib also gets checked somehow and breaks my build pipeline because of this error.
Even if my tsconfig states that skipLibCheck is true and excluded node_modules.
For details you can track the issue here
Thanks in advance!
johnsoncodehk commented
exclude and skipLibCheck cannot ignore library types errors that you have already direct or indirect reference with it in your code. You can see more explain here: https://stackoverflow.com/questions/59906323/typescript-skiplibcheck-still-checking-node-modules-libs
A way you can try is stub: #592 (reply in thread)