-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathwebpack.config.js
37 lines (35 loc) · 921 Bytes
/
webpack.config.js
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
37
const
webpack = require('webpack'),
HtmlWebpackPlugin = require('html-webpack-plugin');
require('ts-loader');
module.exports = (dev) => ({
entry: {
editor: './src/Editor/index.tsx',
wiki: './src/Wiki/Wiki.tsx'
},
output: {
filename: '[name].js'
},
resolve: {
// Add `.ts` and `.tsx` as a resolvable extension.
extensions: ['', '.webpack.js', '.web.js', '.ts', '.tsx', '.js']
},
module: {
loaders: [
// all files with a `.ts` or `.tsx` extension will be handled by `ts-loader`
{
test: /\.tsx?$/,
loader: 'ts-loader'
}
]
},
plugins: [
new HtmlWebpackPlugin({
chunks: ['editor'],
template: './src/Editor/index.html',
filename: 'editor.html',
cache: dev,
hash: !dev,
})
]
});