-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathwebpack.config.js
94 lines (89 loc) · 2.03 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
93
94
const path = require('path')
const {
NODE_ENV = 'development',
port
} = process.env
const WebpackShellPlugin = require('webpack-shell-plugin')
const nodeExternals = require('webpack-node-externals')
const rules = [
{
test: /\.(ts|tsx)?$/,
exclude: /(node_modules)/,
use: {
loader: 'ts-loader',
options: {
transpileOnly: true,
configFile: "../tsconfig.json"
}
}
},
{
// Include ts, tsx, js, and jsx files.
test: /\.(ts|js)x?$/,
exclude: /node_modules/,
loader: 'babel-loader',
},
]
const frontendConfig = {
entry: ['babel-polyfill', path.join(__dirname, './src/demo.ts')],
target: 'web',
mode: 'development',
devtool: 'inline-source-map',
output: {
path: path.resolve(__dirname, 'public'),
filename: 'demo.js'
},
resolve: {
extensions: ['.ts', 'tsx', '.js', 'jsx', '.json'],
},
module: {
rules
},
watch: NODE_ENV === 'development',
// devServer: {
// contentBase: path.join(__dirname, 'public'),
// watchContentBase: true,
// hot: true,
// proxy: [ // allows redirect of requests to webpack-dev-server to another destination
// {
// context: ['/dbms', '/api', '/query'],
// target: `http://localhost:${port}`,
// secure: false,
// },
// ],
// port: 3030,
// }
}
const backendConfig = {
entry: path.join(__dirname, './src/server.ts'),
mode: 'development',
target: 'node',
externals: [nodeExternals()],
output: {
path: path.resolve(__dirname, 'build'),
filename: 'server.js'
},
resolve: {
extensions: ['.ts', '.js'],
},
module: {
rules: [{
test: /\.(ts|tsx)?$/,
exclude: /(node_modules)/,
use: {
loader: 'ts-loader',
options: {
transpileOnly: true,
configFile: "../tsconfig.json"
}
}
}],
},
watch: NODE_ENV === 'development',
plugins: [
new WebpackShellPlugin({
onBuildEnd: ['yarn run start-server-dev']
})
]
}
module.exports = [backendConfig, frontendConfig]