-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathwebpack.config.js
89 lines (87 loc) · 2.81 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
const path = require('path');
const CopyWebpackPlugin = require('copy-webpack-plugin');
module.exports = (options, webpack) => {
const lazyImports = [
'@nestjs/microservices/microservices-module',
'@nestjs/websockets/socket-module',
'@apollo/federation',
'@apollo/gateway',
'ts-morph',
'class-transformer/storage',
'@apollo/federation/dist/directives'
];
return {
...options,
entry: {
main: './src/lambda.ts', // where lambda handler function is exported
},
externals: {
fsevents: "require('fsevents')"
},
output: {
...options.output,
libraryTarget: 'commonjs2',
},
module: {
rules: [
{
test: /\.tsx?$/,
loader: 'ts-loader',
exclude: /node_modules/,
options: {
transpileOnly: true,
},
},
{
test: /\.d\.ts$/,
loader: 'ignore-loader',
},
{
test: /\.js\.map$/,
loader: 'ignore-loader',
},
],
},
plugins: [
...options.plugins,
new webpack.IgnorePlugin({
resourceRegExp: /^@mikro-orm\/core|^@nestjs\/mongoose|^@nestjs\/sequelize|^@nestjs\/typeorm/,
}),
new webpack.IgnorePlugin({
checkResource(resource) {
if (lazyImports.includes(resource)) {
try {
require.resolve(resource);
} catch (err) {
return true;
}
}
return false;
},
}),
// copy Prisma client and arm64 binary for AWS Lambda
new CopyWebpackPlugin({
patterns: [
{
context: path.resolve(__dirname, 'node_modules/.prisma/client'),
from: 'libquery_engine-linux-arm64-*',
to: path.resolve(__dirname, 'dist'),
},
{
from: path.resolve(__dirname, 'prisma/schema.prisma'),
to: path.resolve(__dirname, 'dist/schema.prisma'),
},
],
}),
// copy GraphQL schema file for NestJS server
new CopyWebpackPlugin({
patterns: [
{
from: 'src/schema.gql',
to: 'schema.gql',
},
],
}),
],
};
};