-
Notifications
You must be signed in to change notification settings - Fork 0
/
webpack.config.ts
107 lines (105 loc) · 2.71 KB
/
webpack.config.ts
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
import CopyPlugin from 'copy-webpack-plugin';
import * as path from 'path';
import * as webpack from 'webpack';
import { sentryWebpackPlugin } from '@sentry/webpack-plugin';
const swaggerUiModulePath = path.dirname(require.resolve('swagger-ui-dist'));
module.exports = {
entry: './src/handler.ts',
mode: 'none',
target: 'node',
devtool: 'source-map',
plugins: [
// sentryWebpackPlugin({
// org: 'mashup-linkit',
// project: 'linkit-tracker',
// authToken: process.env.SENTRY_AUTH_TOKEN,
// }),
new webpack.IgnorePlugin({
checkResource(resource) {
const lazyImports = [
'./swagger-ui-bundle.js',
'./swagger-ui-standalone-preset.js',
'class-validator',
'class-transformer/storage',
'@nestjs/swagger',
'fastify-swagger',
'@nestjs/microservices',
'@nestjs/platform-fastify',
'@nestjs/websockets/socket-module',
'@nestjs/microservices/microservices-module',
// mongodb optionals
'mongodb-client-encryption',
'bson-ext',
'kerberos',
'aws4',
'snappy',
'gcp-metadata',
'@mongodb-js/zstd',
'snappy/package.json',
];
if (!lazyImports.includes(resource)) {
return false;
}
try {
require.resolve(resource);
} catch (err) {
return true;
}
return false;
},
}),
new CopyPlugin({
patterns: [
{
from: `${swaggerUiModulePath}/swagger-ui.css`,
to: 'swagger-ui.css',
},
{
from: `${swaggerUiModulePath}/swagger-ui-bundle.js`,
to: 'swagger-ui-bundle.js',
},
{
from: `${swaggerUiModulePath}/swagger-ui-standalone-preset.js`,
to: 'swagger-ui-standalone-preset.js',
},
{
from: `${swaggerUiModulePath}/favicon-32x32.png`,
to: 'favicon-32x32.png',
},
{
from: `${swaggerUiModulePath}/favicon-16x16.png`,
to: 'favicon-16x16.png',
},
{
from: `${swaggerUiModulePath}/oauth2-redirect.html`,
to: 'src/oauth2-redirect.html',
},
],
}),
],
externals: {
'@aws-sdk': '@aws-sdk',
},
resolve: {
extensions: ['.ts', '.js'],
alias: {
'@src': path.resolve(__dirname, 'src'),
},
},
output: {
path: path.resolve(__dirname, 'dist'),
filename: 'index.js',
libraryTarget: 'commonjs',
},
module: {
rules: [{ test: /\.ts$/, loader: 'swc-loader' }],
},
stats: {
warningsFilter: [
'optional-require',
'load-package.util',
'load-adapter',
() => false,
],
},
};