-
Notifications
You must be signed in to change notification settings - Fork 0
/
webpack.config.js
49 lines (42 loc) · 1.15 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
const path = require('path');
const ForkTsCheckerWebpackPlugin = require('fork-ts-checker-webpack-plugin');
module.exports = (env, options) => ({
entry: path.resolve(__dirname, 'src'),
target: 'web',
output: {
filename: 'spaghettify.js',
path: path.resolve(__dirname, options.mode === 'production' ? 'dist' : 'sandbox/temp'),
library: 'Spaghettify',
publicPath: '/temp',
},
resolve: {
alias: {
spaghettify: path.resolve(__dirname, './src/'),
},
extensions: ['.ts', '.tsx', '.js', '.json']
},
devServer: {
contentBase: path.join(__dirname, 'sandbox'),
compress: false, // Falsey, otherwise download progress stream cannot be logged
hot: true,
inline: false,
port: 3000,
noInfo: true,
onListening: function (server) {
const port = server.listeningApp.address().port;
console.log('🍝 Spaghettify is now bootstrapped at', `\x1b[33mhttp://localhost:${port}\x1b[0m`);
},
},
module: {
rules: [
{
test: /\.(ts|js)x?$/,
loader: 'babel-loader',
exclude: /node_modules/
}
],
},
plugins: [
new ForkTsCheckerWebpackPlugin(),
]
});