forked from NeuraLegion/cypress-har-generator
-
Notifications
You must be signed in to change notification settings - Fork 0
/
webpack.config.ts
63 lines (61 loc) · 1.31 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
import externals from 'webpack-node-externals';
import FileManagerPlugin from 'filemanager-webpack-plugin';
import { Configuration } from 'webpack';
import { resolve } from 'path';
const config: Configuration = {
context: process.cwd(),
entry: {
commands: resolve('src/commands.ts'),
index: resolve('src/index.ts')
},
devtool: 'source-map',
mode: 'production',
target: 'node',
externals: externals(),
plugins: [
new FileManagerPlugin({
events: {
onStart: [
{
delete: ['./dist', './commands.js', './commands.js.map']
}
],
onEnd: [
{
move: [
{ source: './dist/commands.js', destination: './commands.js' },
{
source: './dist/commands.js.map',
destination: './commands.js.map'
}
]
}
]
}
})
],
resolve: {
extensions: ['.ts']
},
module: {
rules: [
{
test: /\.ts$/,
use: [
{
loader: 'ts-loader',
options: {
configFile: resolve('./tsconfig.build.json')
}
}
]
}
]
},
output: {
libraryTarget: 'commonjs',
path: resolve('./dist'),
filename: '[name].js'
}
};
export default config;