You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Hi, how to ignore all errors from ts-loader. I am using ts-loader just as a ts transformer for https://typia.io/
I can't disable type check because type information is needed for typia.
I perform type check with ForkTsCheckerWebpackPlugin so type errors logs from the loader are not needed.
Also, nextjs just stops building on ts error at all, what is strange.
I tried silent: true and reportFiles: ['!**/*.{ts,tsx}'] and it didn't help.
Thanks.
The text was updated successfully, but these errors were encountered:
@johnnyreilly I can't disable type checker because typia needs it.
I have separate files *.typia.ts and ts-loader applied only to these files. I do not need type checking, transpilation etc. from ts-loader, only transform but with type information.
Hi, how to ignore all errors from ts-loader. I am using
ts-loader
just as a ts transformer for https://typia.io/I can't disable type check because type information is needed for typia.
I perform type check with
ForkTsCheckerWebpackPlugin
so type errors logs from the loader are not needed.Also, nextjs just stops building on ts error at all, what is strange.
I tried
silent: true
andreportFiles: ['!**/*.{ts,tsx}']
and it didn't help.Thanks.
The text was updated successfully, but these errors were encountered: