Ignore a webpack warning from vscode-languageserver-textdocument #1051
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
We started seeing the following error when we run
yarn run webpack
:It is considered as the same error as the one described in this issue, which suggests two changes in webpack config (
webpack.config.ts
) to deal with the problem:First one (for a "web extension")
Second one (for a "desktop extension")
I found the second one fix the build issue, but the generated extension showed the following error at runtime:
I think it would be less risky to ignore the warning (note: we are using
WarningsToErrorsPlugin
) instead of adding some parameters to webpack config. This PR contains the change inwebpack.config.ts
to ignore the warning.This PR also includes:
@types/vscode
andvscode
dependencessrc/utils/telemetryUtils.ts
)tsconfig.json
and.devcontainer/devcontainer.json
(Ref)Note: I have no idea what those
25h
are...