Skip to content

Instantly share code, notes, and snippets.

@theoparis
Created October 28, 2020 23:53
Show Gist options
  • Save theoparis/01a9aa6a6754c41a7540a2ee36c4703f to your computer and use it in GitHub Desktop.
Save theoparis/01a9aa6a6754c41a7540a2ee36c4703f to your computer and use it in GitHub Desktop.
babelrc for parcel with preact apps w/typescript
{
"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