After updating my TypeScript version, I decided to upgrade my babel configurations as well. However, after this upgrade, I started encountering some errors that I can't seem to resolve. Has anyone else faced a similar issue before? If so, how did you go about fixing it and what was the solution?
The exported identifier "_default" is causing issues in Babel's scope tracker as it is not recognized as a JavaScript value binding or a TypeScript type declaration. This could be due to another plugin injecting "_default" without proper registration. If you are the plugin author, ensure to use "scope.registerDeclaration(declarationPath)".
The exported identifier "_default" is causing issues in Babel's scope tracker as it is not recognized as a JavaScript value binding or a TypeScript type declaration.
Here are the babel dependencies in my project:
"@babel/core": "^7.13.8",
"@babel/plugin-proposal-class-properties": "^7.13.0",
"@babel/plugin-proposal-numeric-separator": "^7.12.13",
"@babel/preset-env": "^7.13.8",
"@babel/preset-react": "^7.12.13",
"@babel/preset-typescript": "^7.13.0"