Skip to content

Instantly share code, notes, and snippets.

@pmcalabrese
Last active October 29, 2017 15:28
Show Gist options
  • Save pmcalabrese/4586d55fb3b7297cee18e610dba84679 to your computer and use it in GitHub Desktop.
Save pmcalabrese/4586d55fb3b7297cee18e610dba84679 to your computer and use it in GitHub Desktop.
ts to js
...
{
test: /\.tsx?/i,
exclude: /node_modules/,
use: [
{
loader: 'babel-loader',
options: {
presets: [
'es2015',
"preact"
],
plugins: [
[
'transform-react-jsx',
{ pragma: 'h' },
]
]
}
},
{
loader: 'ts-loader'
}
]
},
...
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment