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
When using webpack for this project, I got the following warning:
WARNING in ./node_modules/vscode-textmate/release/main.js 23:15-27
Critical dependency: the request of a dependency is an expression
@ ./src/providers.ts
@ ./src/app.ts
@ multi ./src/app.ts
Looks like some dynamically linked modules can not be statically determined by webpack. I checked the vscode-textmate code:
When using webpack for this project, I got the following warning:
WARNING in ./node_modules/vscode-textmate/release/main.js 23:15-27 Critical dependency: the request of a dependency is an expression @ ./src/providers.ts @ ./src/app.ts @ multi ./src/app.ts
Looks like some dynamically linked modules can not be statically determined by webpack. I checked the
vscode-textmate
code:Looks like the
require(mod)
caused the problem.Is it safe to just dismiss the warning or is there anything we need to do about it?
The text was updated successfully, but these errors were encountered: