Created
November 8, 2020 15:02
-
-
Save taylorhutchison/0404a1f6e97160b236dc73df0b947fb7 to your computer and use it in GitHub Desktop.
Basic Webpack Setup for TypeScript
This file contains 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
const path = require('path'); | |
const HtmlWebpackPlugin = require('html-webpack-plugin'); | |
const { CleanWebpackPlugin } = require('clean-webpack-plugin'); | |
const CopyPlugin = require('copy-webpack-plugin'); | |
// npm install typescript webpack webpack-cli html-webpack-plugin clean-webpack-plugin copy-webpack-plugin ts-loader file-loader webpack-dev-server | |
module.exports = { | |
mode: 'development', | |
entry: { | |
app: './src/main.ts', | |
}, | |
output: { | |
filename: '[name].[fullhash].js', | |
path: path.resolve(__dirname, 'dist') | |
}, | |
devServer: { | |
contentBase: './dist', | |
hot: true, | |
}, | |
module: { | |
rules: [ | |
{ test: /\.ts$/, use: 'ts-loader' }, | |
] | |
}, | |
plugins: [ | |
new CleanWebpackPlugin(), | |
// Uncomment if you have an assets folder. | |
// new CopyPlugin({ | |
// patterns: [ | |
// { from: 'src/assets', to: 'assets' } | |
// ], | |
// }), | |
new HtmlWebpackPlugin({ template: './src/index.html' }) | |
], | |
resolve: { | |
extensions: ['.ts', '.js', '.json'] | |
}, | |
optimization: { | |
splitChunks: { | |
chunks: 'all', | |
}, | |
}, | |
}; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment