Open
Description
As I understand, a TypeScript transformer is needed to solve this problem. Are you planning to create it in the future?
Application created with create-react-app --typescript
Config extended with react-app-rewired
const {
override,
disableEsLint,
useBabelRc
} = require('customize-cra')
module.exports = override(
disableEsLint(),
useBabelRc()
)
.babelrc
{
"plugins": [
"react-directives",
"@babel/transform-react-jsx"
]
}