jkanczler
jkanczler
Have you tried to use the resolutions node in the package.json? For me the TypeScript definition issues with react are solved by the following settings in package.json: ``` "resolutions": {...
Interesting idea. I'm thinking on it. Maybe I can do this using the VSTS REST API to create comments from the build.
Thanks for the suggestion. It won't be that hard to implement as I've checked it. The [vso-node-api](https://github.com/Microsoft/vsts-node-api) library will make my life easier to implement this. Though I have to...
Found an answer for this. Fortunately, MS moves the comments appropriately if the file changes. VSTS is tracking pull request iterations (a push to the pull request) and you can...
I have another challenges. Loaders... Every loader has a different format for errors and warnings.
My plan is to support the popular loaders then. E.g.: - [ts-loader](https://yarnpkg.com/en/package/ts-loader), - [tslint-loader](https://yarnpkg.com/en/package/tslint-loader), - [babel-loader](https://yarnpkg.com/en/package/babel-loader), - [eslint-loader](https://yarnpkg.com/en/package/eslint-loader), - [sass-loader](https://yarnpkg.com/en/package/sass-loader), - [less-loader](https://yarnpkg.com/en/package/less-loader), - [css-loader](https://yarnpkg.com/en/package/css-loader). Those are coming up into my...
Still, lots of outstanding questions are there when can I close already existing comments. Until solving those the feature is still not available. :-(
Unfortunately testing the solution is not that straightforward. I have to release a working version to test the enhancement. As you could see there were some pull request merge already....
I'll try to reproduce it. So I assume I just have to include BundleAnalyzerPlugin into my webpack configuration for it.
What do you think about the idea to be able to configure a timeout for the webpack task and after the timeout fail the task anyway and give a warning...