forked from jmerle/competitive-companion
-
Notifications
You must be signed in to change notification settings - Fork 0
/
webpack.config.ts
90 lines (82 loc) · 2.19 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
// tslint:disable no-implicit-dependencies
import * as CopyWebpackPlugin from 'copy-webpack-plugin';
import * as path from 'path';
import webpack = require('webpack');
function transformManifest(content: string): string {
const manifest = JSON.parse(content);
Object.keys(require.cache).forEach(id => {
if (!id.includes('node_modules')) {
delete require.cache[id];
}
});
const packageData = require('./package.json');
manifest.name = packageData.productName;
manifest.description = packageData.description;
manifest.version = packageData.version;
manifest.author = packageData.author;
manifest.homepage_url = packageData.repository;
return JSON.stringify(manifest, null, 2);
}
const config: webpack.Configuration = {
entry: {
background: path.resolve(__dirname, 'src/background.ts'),
content: path.resolve(__dirname, 'src/content.ts'),
options: path.resolve(__dirname, 'src/options.ts'),
},
module: {
rules: [
{
exclude: /(node_modules)/,
loader: 'ts-loader',
test: /\.tsx?$/,
},
{
loader: 'worker-loader',
options: {
fallback: false,
inline: true,
},
test: /\.worker\.js$/,
},
],
},
optimization: {
minimize: false,
},
output: {
filename: '[name].js',
path: path.resolve(__dirname, 'build/js'),
},
performance: {
hints: false,
},
plugins: [
new CopyWebpackPlugin([
{
from: path.resolve(__dirname, 'static/manifest.json'),
to: path.resolve(__dirname, 'build'),
transform: transformManifest,
},
{
from: path.resolve(__dirname, 'icons'),
to: path.resolve(__dirname, 'build/icons'),
},
{
from: path.resolve(__dirname, 'node_modules/webextension-polyfill/dist/browser-polyfill.min.js'),
to: path.resolve(__dirname, 'build/js'),
},
{
from: path.resolve(__dirname, 'src/options.html'),
to: path.resolve(__dirname, 'build'),
},
{
from: path.resolve(__dirname, 'LICENSE'),
to: path.resolve(__dirname, 'build'),
},
]),
],
resolve: {
extensions: ['.ts', '.js'],
},
};
export default config;