I have a Typescript/React app, that can perform async function with a then/catch promise, but not with async/await/try/catch.
The error is: Uncaught ReferenceError: regeneratorRuntime is not defined .
The error seems to e from Babel. Here is my config:
{
"presets": [
"@babel/preset-env",
"@babel/preset-typescript",
"@babel/preset-react"
],
"plugins": ["babel-plugin-styled-ponents"]
}
I have a Typescript/React app, that can perform async function with a then/catch promise, but not with async/await/try/catch.
The error is: Uncaught ReferenceError: regeneratorRuntime is not defined .
The error seems to e from Babel. Here is my config:
{
"presets": [
"@babel/preset-env",
"@babel/preset-typescript",
"@babel/preset-react"
],
"plugins": ["babel-plugin-styled-ponents"]
}
How to fix this?
Share Improve this question asked Apr 19, 2020 at 12:12 DoneDeal0DoneDeal0 6,29718 gold badges77 silver badges132 bronze badges2 Answers
Reset to default 9You can find your solution at here
If I summarise then you have to install a babel
plugin named plugin-transform-runtime
and need to configure the .babelrc
settings.
npm install @babel/plugin-transform-runtime --save-dev
npm install @babel/runtime
After installing these two go to the .babelrc
file and add these plugins.
"plugins": [
["@babel/plugin-transform-runtime",
{
"regenerator": true
}
]
],
for babel 7
All necessary packages are included in "@babel/preset-env"
{
"presets": [
[
"@babel/preset-env",
{
"targets": {
"node": "10.0.0"
}
}
],
"@babel/preset-react"
]
}
Super Basic example
import React from "react";
const Board = () => {
const [resp_post, setResp_post] = React.useState(0);
(async function getData() {
setResp_post(await Promise.resolve(30));
})();
return <h1>Board {resp_post} {value}</h1>;
};
export default Board;
preset-env documentation
preset-reactlink documentation