admin管理员组文章数量:1346657
I am getting a
"regeneratorRuntime is not defined"
when trying to use async
/await
in a project.
My babelrc
file is this currently:
{
"presets": ["env", "react"],
"plugins": [
"transform-runtime",
"transform-object-rest-spread"
]
}
and my package.json
is:
{
"name": "****",
"version": "1.0.0",
"description": "****",
"main": "index.js",
"author": "****",
"license": "UNLICENSED",
"private": true,
"scripts": {
"start": "yarn build && nodemon server/index.js --ignore dist/ --ignore public/",
"watch": "parcel watch public/index.html --public-url /",
"build": "parcel build public/index.html --public-url /",
"test": "jest"
},
"dependencies": {
"@babel/runtime": "^7.5.5",
"axios": "^0.19.0",
"express": "^4.17.1",
"express-validator": "^6.1.1",
"react": "^16.9.0",
"react-dom": "^16.9.0",
"super-reset-css": "^1.0.5"
},
"devDependencies": {
"babel-core": "^6.26.3",
"babel-plugin-transform-object-rest-spread": "^6.26.0",
"babel-plugin-transform-runtime": "^6.23.0",
"babel-preset-env": "^1.7.0",
"babel-preset-react": "^6.24.1",
"jest": "^24.8.0",
"nodemon": "^1.14.11",
"parcel-bundler": "^1.5.1",
"sass": "^1.22.9"
}
}
I'm sort of new to configuring babel so not sure what to do here.
I am getting a
"regeneratorRuntime is not defined"
when trying to use async
/await
in a project.
My babelrc
file is this currently:
{
"presets": ["env", "react"],
"plugins": [
"transform-runtime",
"transform-object-rest-spread"
]
}
and my package.json
is:
{
"name": "****",
"version": "1.0.0",
"description": "****",
"main": "index.js",
"author": "****",
"license": "UNLICENSED",
"private": true,
"scripts": {
"start": "yarn build && nodemon server/index.js --ignore dist/ --ignore public/",
"watch": "parcel watch public/index.html --public-url /",
"build": "parcel build public/index.html --public-url /",
"test": "jest"
},
"dependencies": {
"@babel/runtime": "^7.5.5",
"axios": "^0.19.0",
"express": "^4.17.1",
"express-validator": "^6.1.1",
"react": "^16.9.0",
"react-dom": "^16.9.0",
"super-reset-css": "^1.0.5"
},
"devDependencies": {
"babel-core": "^6.26.3",
"babel-plugin-transform-object-rest-spread": "^6.26.0",
"babel-plugin-transform-runtime": "^6.23.0",
"babel-preset-env": "^1.7.0",
"babel-preset-react": "^6.24.1",
"jest": "^24.8.0",
"nodemon": "^1.14.11",
"parcel-bundler": "^1.5.1",
"sass": "^1.22.9"
}
}
I'm sort of new to configuring babel so not sure what to do here.
Share Improve this question edited Aug 18, 2019 at 4:20 ravibagul91 20.8k6 gold badges38 silver badges61 bronze badges asked Aug 18, 2019 at 4:00 Sandra WillfordSandra Willford 3,80915 gold badges53 silver badges101 bronze badges 2-
Does this stack question help you out? It contains answers for Babel 6 and 7. I think you are also mixing babel major versions here for
@babel/runtime
andbabel-plugin-transform-runtime
etc. . – ford04 Commented Aug 20, 2019 at 9:14 - Found the answer here – MarshHawk Commented Mar 2, 2020 at 1:58
3 Answers
Reset to default 9I fixed a similar problem using the following post
Try the following in .babelrc:
{
"presets": ["@babel/preset-env"],
"plugins": [
"@babel/plugin-transform-runtime"
],
...
with the following dev dependencies:
@babel/plugin-transform-runtime @babel/runtime
I think it is because you are using @babel/runtime
.
My set up is @babel/runtime
, @babel/core
, @babel/plugin-transform-runtime
and in the .bablerc
set
"plugins": ["@babel/transform-runtime"]
I hope this helps.
You can use the Bable Plugin @babel/plugin-transform-runtime as answered by others - but all it does is to import "regenerator-runtime/runtime".
You can just add this line to your script and you are ready to go:
import "regenerator-runtime/runtime";
本文标签: javascriptregeneratorRuntime is not defined when using asyncawaitStack Overflow
版权声明:本文标题:javascript - regeneratorRuntime is not defined when using asyncawait - Stack Overflow 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1743825500a2545565.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论