React jest typescript SyntaxError: Unexpected token
Solution
Add "@babel/typescript" to your project as well as in the babel.config.js file :
module.exports = {
presets: [
'@babel/preset-env',
'@babel/preset-react',
"@babel/typescript",
],
plugins: [
"@babel/plugin-proposal-export-default-from",
],
};
Recent Comments