-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathwebpack.server.js
49 lines (48 loc) · 1.08 KB
/
webpack.server.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 nodeExternals = require('webpack-node-externals');
const NodemonPlugin = require('nodemon-webpack-plugin');
module.exports = {
mode: 'development',
entry: path.resolve(__dirname, 'src', 'server.tsx'),
resolve: {
extensions: ['.js', '.jsx', '.json', '.ts', '.tsx'],
modules: [
'node_modules',
path.resolve('node_modules'),
path.resolve('src'),
],
},
target: 'node',
externals: [nodeExternals()],
output: {
path: path.resolve(__dirname, 'dist'),
filename: 'server.js',
},
module: {
rules: [
{
test: /\.(ts|tsx)$/,
exclude: /node_modules/,
use: [
{
loader: 'ts-loader',
options: {
configFile: path.resolve(__dirname, 'tsconfig.server.json'),
transpileOnly: true,
},
},
],
},
],
},
plugins: [new NodemonPlugin()],
stats: {
colors: true,
modules: false,
chunks: false,
chunkGroups: false,
chunkModules: false,
env: true,
children: false,
},
};