jp-babel
jp-babel copied to clipboard
`.babelrc` for TypeScript + React
In case it is helpful to others, here is the .babelrc file that I am using with this kernel to get TypeScript and React working:
{
"presets": [
"@babel/react",
[
"@babel/typescript",
{
"isTSX": true,
"allExtensions": true,
"allowNamespaces": true
}
]
]
}
- https://babeljs.io/docs/en/babel-preset-react
- https://babeljs.io/docs/en/config-files
Which paths for the .babelrc are supported?