-
-
Notifications
You must be signed in to change notification settings - Fork 243
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
feat: add context
option for typescript reporter
#430
Conversation
f364fdf
to
44e43f2
Compare
1f92733
to
1968771
Compare
Add `context` option to support usage of external tsconfig.json files. ✅ Closes: #297
1968771
to
c146c2a
Compare
🎉 This PR is included in version 5.0.0-alpha.14 🎉 The release is available on: Your semantic-release bot 📦🚀 |
Thanks for the quick fix! I've tested this and it works great, one thing that is still different, i get: Now, my setup is such that I potentially use webpack without ts files at all (only scss for example). Any ideas? (other than disabling this plugin if no ts files, I'd rather it silently continue like ts-loader with no errors maybe?). Thanks! |
If you want to skip this error, you can configure it in the plugin: new ForkTsCheckerWebpackPlugin({
issues: {
exclude: [{ code: 'TS18003' }]
}
}) |
🎉 This PR is included in version 5.0.0-beta.1 🎉 The release is available on: Your semantic-release bot 📦🚀 |
🎉 This PR is included in version 5.0.0 🎉 The release is available on: Your semantic-release bot 📦🚀 |
Add the
context
option to support the usage of external tsconfig.json files.✅ Closes: #297