Skip to content

Instantly share code, notes, and snippets.

@missating
Last active September 17, 2018 09:20
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/211c10d60bca6da0c0b95354211db012 to your computer and use it in GitHub Desktop.
Save missating/211c10d60bca6da0c0b95354211db012 to your computer and use it in GitHub Desktop.
const path = require('path');
const HtmlWebpackPlugin = require('html-webpack-plugin');
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'
}
]
},
plugins: [
new HtmlWebpackPlugin({
template: './src/index.html'
})
]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment