-
Notifications
You must be signed in to change notification settings - Fork 13
/
webpack.config.ts
80 lines (74 loc) · 2.06 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
import * as path from 'path';
import * as webpack from 'webpack';
import { createDevelopmentManifest, manifestNs } from './build/scripts/manifest';
import ForkTsCheckerWebpackPlugin from 'fork-ts-checker-webpack-plugin';
import copyWebpackPlugin from 'copy-webpack-plugin';
const config = (environment: unknown, options: { mode: string; env: unknown }): webpack.Configuration => {
let pluginNs = manifestNs;
if (options.mode === 'development') {
pluginNs = 'dev.' + manifestNs;
}
return {
entry: {
plugin: './build/entries/PluginEntry.ts',
propertyinspector: './build/entries/PropertyinspectorEntry.ts',
},
target: 'web',
output: {
library: 'connectElgatoStreamDeckSocket',
libraryExport: 'default',
path: path.resolve(__dirname, 'dist/' + pluginNs + '.sdPlugin/js'),
},
plugins: [
new copyWebpackPlugin({
patterns: [
{
from: 'assets',
to: path.resolve(__dirname, 'dist/' + pluginNs + '.sdPlugin'),
toType: 'dir',
transform: (content, path) => {
if (options.mode === 'development' && /manifest\.json$/.test(path)) {
return createDevelopmentManifest();
}
if (!/\.html/.test(path)) {
return content;
}
return content.toString().replace('{{ PLUGIN_NS }}', pluginNs);
},
},
],
}),
new ForkTsCheckerWebpackPlugin(),
],
module: {
rules: [
{
test: /\.(ts|js)$/,
exclude: /node_modules/,
use: {
loader: 'babel-loader',
},
},
{
test: /\.js$/,
enforce: 'pre',
use: [
{
loader: 'source-map-loader',
options: {
filterSourceMappingUrl: () => false,
},
},
],
},
],
},
resolve: {
extensions: ['.ts', '.js'],
},
optimization: {
splitChunks: {},
},
};
};
export default config;