-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathwebpack.config.js
92 lines (91 loc) · 2.34 KB
/
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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
const path = require('path')
const webpack = require('webpack')
const Dotenv = require('dotenv-webpack')
const ExtractTextPlugin = require('extract-text-webpack-plugin')
const ForkTsCheckerWebpackPlugin = require('fork-ts-checker-webpack-plugin')
const HtmlWebpackPlugin = require('html-webpack-plugin')
module.exports = {
mode: 'development',
devServer: {
contentBase: __dirname + '/dist',
compress: true,
// hot: true,
https: false,
port: 8081,
disableHostCheck: true,
publicPath: '/'
},
entry: './src/index.tsx',
externals: {
'chart.js': 'Chart',
lodash: '_',
'mapbox-gl': 'mapboxgl',
moment: 'moment',
react: 'React',
'react-dom': 'ReactDOM',
rx: 'Rx'
},
output: {
filename: 'bundle.js',
path: __dirname + '/dist'
},
resolve: {
extensions: ['.ts', '.tsx', '.js', '.json']
},
module: {
rules: [
{
include: path.resolve(__dirname, 'src'),
loader: 'ts-loader',
options: {
transpileOnly: true
},
test: /\.tsx?$/,
},
{
include: path.resolve(__dirname, 'src'),
loader: 'file-loader',
test: /\.png$/,
},
{
include: path.resolve(__dirname, 'src'),
test: /\.css$/,
use: ExtractTextPlugin.extract({
use: ['css-loader', {
loader: 'postcss-loader',
options: {
plugins: loader => [
require('postcss-import')(),
require('postcss-cssnext')({
browsers: '>2%'
})
]
}
}]
})
}
]
},
plugins: [
new Dotenv({
path: '../.env'
}),
new ExtractTextPlugin({
filename: 'bundle.css'
}),
new HtmlWebpackPlugin({
filename: 'index.html',
template: 'src/index.ejs',
title: 'bayes-network-adequacy-explorer',
favicon: path.join(__dirname, 'src/images/favicon.png')
}),
new webpack.DefinePlugin({
'process.env.ENV': JSON.stringify(process.env.ENV),
'process.env.NODE_ENV': JSON.stringify('development'),
'process.env.API_ROOT': JSON.stringify(process.env.API_ROOT),
'process.env.MAPBOX_TOKEN': JSON.stringify(process.env.MAPBOX_TOKEN),
'process.env.GA_ID': JSON.stringify(process.env.GA_ID)
}),
new ForkTsCheckerWebpackPlugin
]
}