Replies: 2 comments 5 replies
-
Don't use babel, switch to import syntax |
Beta Was this translation helpful? Give feedback.
1 reply
-
You're using |
Beta Was this translation helpful? Give feedback.
4 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
I get the below error when try to import formidable@3.2.4 in my project. Can you suggest a solution to resolve this.
-------<( "BABEL PARSING ERROR" )>------- Error [ERR_REQUIRE_ESM]: Must use import to load ES Module: \node_modules\formidable\src\index.js
require() of ES modules is not supported.
require() of \node_modules\formidable\src\index.js from \app.router.js is an ES module file as it is a .js file whose nearest parent package.json contains "type": "module" which defines all .js files in that package scope as ES modules.
Instead rename index.js to end in .cjs, change the requiring code to use import(), or remove "type": "module" from \node_modules\formidable\package.json.
at Module._extensions..js (internal/modules/cjs/loader.js:1089:13)
at Object.newLoader [as .js] (\node_modules\pirates\lib\index.js:141:7)
at Module.load (internal/modules/cjs/loader.js:937:32)
at Function.Module._load (internal/modules/cjs/loader.js:778:12)
at Module.require (internal/modules/cjs/loader.js:961:19)
at require (internal/modules/cjs/helpers.js:92:18)
at Object. (\app.router.js:2:1)
at Module._compile (internal/modules/cjs/loader.js:1072:14)
at Module._compile (\node_modules\pirates\lib\index.js:136:24)
at Module._extensions..js (internal/modules/cjs/loader.js:1101:10) {
code: 'ERR_REQUIRE_ESM'
}
Beta Was this translation helpful? Give feedback.
All reactions