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
strictMode: false allows you to avoid injecting "use strict"; in the compiled code, but the input files are still parsed as strict code if they are ESM or have the "use strict" directive.
During the use of the plugin, an error is reported
Binding 'arguments' in strict mode.
plugins: [ ["@babel/plugin-transform-modules-commonjs", { strictMode: false }], ],
is not work.
Whether strict mode is no longer allowed to be turned off during compression?
The text was updated successfully, but these errors were encountered: