Skip to content

Instantly share code, notes, and snippets.

@missating
Last active September 17, 2018 09:19
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save missating/dab68081538dbf802ed739725d4fd479 to your computer and use it in GitHub Desktop.
Save missating/dab68081538dbf802ed739725d4fd479 to your computer and use it in GitHub Desktop.
const path = require('path');
module.exports = {
entry: './src/index.tsx',
resolve: {
extensions: ['.ts', '.tsx', '.js']
},
output: {
path: path.join(__dirname, '/dist'),
filename: 'bundle.min.js'
},
module: {
rules: [
{
test: /\.tsx?$/,
loader: 'awesome-typescript-loader'
}
]
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment