-
Notifications
You must be signed in to change notification settings - Fork 238
/
webpack.config.ts
36 lines (34 loc) · 926 Bytes
/
webpack.config.ts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
import HtmlWebpackPlugin from 'html-webpack-plugin';
import path from 'path';
import webpack from 'webpack';
const config: webpack.Configuration = {
mode: 'production',
context: path.normalize(`${__dirname}/live-example`),
entry: ['./main.ts', './main.css'],
output: {
path: path.resolve(__dirname, 'docs/examples/live-example'),
filename: 'live-example.[contenthash].js',
clean: true,
},
module: {
rules: [
{
test: /\.ts$/,
use: 'ts-loader',
},
{
test: /\.css$/,
use: ['style-loader', 'css-loader'],
},
],
},
resolve: {
extensions: ['.tsx', '.ts', '.js'],
},
plugins: [
new HtmlWebpackPlugin({
template: path.resolve(__dirname, './live-example/index.html'),
}),
],
};
export default config;