-
Notifications
You must be signed in to change notification settings - Fork 1
/
webpack.config.js
47 lines (46 loc) · 1.17 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
const path = require('path');
const nodeExternals = require('webpack-node-externals');
module.exports = {
mode: process.env.NODE_ENV || 'development',
target: 'node',
entry: {
server: './server/index.ts',
},
output: {
path: path.join(__dirname, 'dist'),
publicPath: '/',
filename: '[name].js',
},
resolve: {
extensions: ['.tsx', '.ts', '.js', '.jsx'],
},
node: {
// Need this when working with express, otherwise the build fails
__dirname: false, // if you don't put this is, __dirname
__filename: false, // and __filename return blank or /
},
externals: [nodeExternals()], // Need this to avoid error when working with Express
module: {
rules: [
{
test: /\.ts(x?)$/,
exclude: /node_modules/,
use: ['ts-loader'],
},
{
test: /\.js(x?)$/,
exclude: /node_modules/,
use: {
loader: 'babel-loader',
options: {
presets: [
require.resolve('@babel/preset-react'),
require.resolve('@babel/preset-env'),
require.resolve('@babel/preset-typescript'),
],
},
},
},
],
},
};