-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathwebpack.config.js
More file actions
131 lines (124 loc) · 2.97 KB
/
webpack.config.js
File metadata and controls
131 lines (124 loc) · 2.97 KB
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
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
/* eslint-disable @typescript-eslint/no-var-requires */
const path = require('path');
const webpack = require('webpack');
const nodeExternals = require('webpack-node-externals');
// fork-ts-checker-webpack-plugin需要单独安装
const ForkTsCheckerWebpackPlugin = require('fork-ts-checker-webpack-plugin');
const AddAssetPlugin = require('add-asset-webpack-plugin');
const package = require('./package.json');
const CopyPlugin = require('copy-webpack-plugin');
const isProduction = process.env.NODE_ENV == 'production';
const config = {
entry: './src/main',
target: 'node',
// 置为空即可忽略webpack-node-externals插件
externals: {
bcrypt: 'commonjs2 bcrypt',
'@prisma/client': 'commonjs2 @prisma/client',
prisma: 'commonjs2 prisma'
},
// ts文件的处理
module: {
rules: [
{
test: /\.ts?$/,
use: {
loader: 'ts-loader',
options: { transpileOnly: true }
},
exclude: /node_modules/
}
]
},
// 打包后的文件名称以及位置
output: {
filename: 'main.js',
path: path.resolve(__dirname, 'dist')
},
resolve: {
extensions: ['.js', '.ts', '.json']
},
plugins: [
// 需要进行忽略的插件
new webpack.IgnorePlugin({
checkResource(resource) {
const lazyImports = [
'@nestjs/microservices',
'@nestjs/microservices/microservices-module',
'@nestjs/websockets/socket-module',
'cache-manager',
'class-validator',
'class-transformer'
];
if (!lazyImports.includes(resource)) {
return false;
}
try {
require.resolve(resource, {
paths: [process.cwd()]
});
} catch (err) {
return true;
}
return false;
}
}),
new CopyPlugin({
patterns: [
// {
// from: 'node_modules/.prisma',
// to: 'node_modules/.prisma'
// },
{
from: 'node_modules/@prisma/client',
to: 'node_modules/@prisma/client'
},
// },
{
from: 'node_modules/.prisma',
to: 'node_modules/.prisma'
},
{
from: 'prisma',
to: 'prisma'
}
// {
// from: './../../node_modules/.prisma/client/libquery_engine-*',
// to: ({ context, absoluteFilename }) => {
// return `./${path.basename(absoluteFilename)}`;
// },
// },
]
}),
new ForkTsCheckerWebpackPlugin(),
new AddAssetPlugin('./package.json', createPackage)
]
};
function createPackage() {
const externals = config.externals;
const externalsKeys = Object.keys(externals);
const dependencies = package.dependencies;
const externals_dependencies = {};
for (const key in dependencies) {
if (externalsKeys.includes(key)) {
externals_dependencies[key] = dependencies[key];
}
}
const packages = {
dependencies: externals_dependencies,
scripts: {
server: 'node main.js',
generate: 'prisma generate',
'db:migrate:deploy': 'prisma migrate deploy'
}
};
return JSON.stringify(packages);
}
module.exports = () => {
if (isProduction) {
config.mode = 'production';
} else {
config.mode = 'development';
}
return config;
};