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.
Hi, how to ignore all errors from ts-loader. I am using
ts-loaderjust 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
ForkTsCheckerWebpackPluginso 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: trueandreportFiles: ['!**/*.{ts,tsx}']and it didn't help.Thanks.