-
Notifications
You must be signed in to change notification settings - Fork 4
/
webpack.common.js
54 lines (51 loc) · 1.06 KB
/
webpack.common.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
import ForkTsCheckerWebpackPlugin from 'fork-ts-checker-webpack-plugin';
import path from 'node:path';
import url from 'node:url';
// Options
const DIRNAME = path.dirname(url.fileURLToPath(import.meta.url));
/**
* Config
* @type import('webpack').Configuration
*/
const commonConfig = {
devtool: 'source-map',
target: 'browserslist:node 20',
entry: './src/index.ts',
output: {
filename: 'bundle.cjs',
path: path.resolve(DIRNAME, 'dist'),
clean: true,
},
optimization: {
moduleIds: 'natural',
},
module: {
rules: [
{
test: /\.(js|jsx|ts|tsx)$/,
exclude: /[\\/]node_modules[\\/]/,
use: 'swc-loader',
},
{
test: /\.json$/,
type: 'json'
}
]
},
resolve: {
extensions: ['.js', '.json', '.jsx', '.ts', '.tsx']
},
externalsPresets: {
node: true,
},
externals: ['supports-color'],
plugins: [
new ForkTsCheckerWebpackPlugin({
typescript: {
build: true,
configFile: './tsconfig.build.json'
}
})
]
};
export default commonConfig;