-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathwebpack.config.dev.js
42 lines (41 loc) · 1004 Bytes
/
webpack.config.dev.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
38
39
40
41
42
const HtmlWebpackPlugin = require('html-webpack-plugin');
const path = require('path');
const webpack = require('webpack');
module.exports = {
devtool: 'source-map',
mode: 'development',
entry: path.join(__dirname, "./src/TimePicker.tsx"),
resolve: {
extensions: ['.ts', '.tsx', '.js', '.json'],
},
output: {
path: path.join(__dirname, './dist'),
filename: 'index.js',
libraryTarget: 'umd',
publicPath: '/dist/',
umdNamedDefine: true
},
plugins: [
new HtmlWebpackPlugin({
filename: 'index.html',
inject: true,
template: './index.html',
}),
],
module: {
rules: [
{ test: /\.tsx?$/, loader: 'awesome-typescript-loader' },
{ enforce: 'pre', test: /\.js$/, loader: 'source-map-loader' },
{
test: /\.scss$/,
use: ['style-loader', 'css-loader', 'sass-loader'],
exclude: /node_modules/,
},
],
},
devServer: {
contentBase: 'dist',
port: 3001,
writeToDisk: true
},
};