Created
October 28, 2020 23:53
-
-
Save theoparis/01a9aa6a6754c41a7540a2ee36c4703f to your computer and use it in GitHub Desktop.
babelrc for parcel with preact apps w/typescript
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Show hidden characters
{ | |
"presets": ["@babel/env", ["@babel/typescript", { "jsxPragma": "h" }]], | |
"plugins": [ | |
["@babel/transform-react-jsx", { "pragma": "h" }], | |
"@babel/proposal-optional-chaining", | |
"@babel/proposal-nullish-coalescing-operator" | |
] | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment