-
Notifications
You must be signed in to change notification settings - Fork 10
/
webpack.config.js
142 lines (137 loc) · 4.62 KB
/
webpack.config.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
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
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
//@ts-check
"use strict";
const fs = require("fs-extra");
const path = require("path");
const HtmlWebpackPlugin = require("html-webpack-plugin");
const WorkboxPlugin = require("workbox-webpack-plugin");
const CopyWebpackPlugin = require("copy-webpack-plugin");
const { DefinePlugin } = require("webpack");
fs.rmdirSync(path.resolve(__dirname, "dist"), { recursive: true });
const isProduction = process.env["NODE_ENV"] === "production";
/**@type {import('webpack').Configuration}*/
const config = {
target: "webworker", // vscode extensions run in a Node.js-context 📖 -> https://webpack.js.org/configuration/node/
mode: "none", // isProduction ? "production" : "development", -- set to 'production' is causing problem
entry: {
index: "./src/index.ts",
}, // the entry point of this extension, 📖 -> https://webpack.js.org/configuration/entry-context/
output: {
// the bundle is stored in the 'dist' folder (check package.json), 📖 -> https://webpack.js.org/configuration/output/
path: path.resolve(__dirname, "dist"),
filename: "[name].bundle.js",
clean: true,
library: {
type: "window",
},
},
plugins: [
new HtmlWebpackPlugin({
template: "./index.html",
filename: path.resolve(__dirname, "./dist/index.html"),
}),
new WorkboxPlugin.GenerateSW({
// these options encourage the ServiceWorkers to get in there fast
// and not allow any straggling "old" SWs to hang around
clientsClaim: true,
skipWaiting: true,
maximumFileSizeToCacheInBytes: 1024 * 1024 * 10, // 10mb
mode: isProduction ? "production" : "development",
}),
new CopyWebpackPlugin({
patterns: [
{
from: path.resolve(__dirname, "./node_modules/vscode-textmate"),
to: path.resolve(__dirname, "./dist/vscode-textmate"),
},
{
from: path.resolve(__dirname, "./node_modules/vscode-oniguruma"),
to: path.resolve(__dirname, "./dist/vscode-oniguruma"),
},
{
from: path.resolve(__dirname, "./node_modules/semver-umd"),
to: path.resolve(__dirname, "./dist/semver-umd"),
},
{
from: path.resolve(__dirname, "./node_modules/vscode-web"),
to: path.resolve(__dirname, "./dist/vscode-web"),
filter: (resourcePath) => {
const bName = path.basename(resourcePath);
return !(
resourcePath.match(/\.(exe|scpt|ts|lock)$/) ||
bName.startsWith(".") ||
bName.startsWith("_") ||
bName === "tsconfig.json" ||
resourcePath.indexOf("/.vscode/") >= 0 ||
resourcePath.indexOf(
"vscode-web/dist/extensions/vscode-colorize-tests/"
) >= 0 ||
resourcePath.indexOf(
"vscode-web/dist/extensions/vscode-custom-editor-tests/"
) >= 0 ||
resourcePath.indexOf(
"vscode-web/dist/extensions/vscode-api-tests/"
) >= 0 ||
resourcePath.indexOf(
"vscode-web/dist/extensions/vscode-notebook-tests/"
) >= 0
);
},
},
{
from: path.resolve(__dirname, "./logo.svg"),
to: path.resolve(__dirname, "./dist/logo.svg"),
},
{
from: path.resolve(__dirname, "./manifest.json"),
to: path.resolve(__dirname, "./dist/manifest.json"),
},
{
from: path.resolve(__dirname, "./assets/"),
to: path.resolve(__dirname, "./dist/assets/"),
},
],
}),
new DefinePlugin({
"process.env.PUBLIC_URL": JSON.stringify(process.env["PUBLIC_URL"] || ""),
"process.env.NODE_ENV": JSON.stringify(
isProduction ? "production" : "development"
),
}),
],
devtool: "nosources-source-map",
/*
externals: {
vscode: "commonjs vscode", // the vscode-module is created on-the-fly and must be excluded. Add other modules that cannot be webpack'ed, 📖 -> https://webpack.js.org/configuration/externals/
},
*/
resolve: {
// support reading TypeScript and JavaScript files, 📖 -> https://github.com/TypeStrong/ts-loader
extensions: [".ts", ".js"],
},
module: {
rules: [
{
test: /\.ts$/,
exclude: /node_modules/,
use: [
{
loader: "ts-loader",
},
],
},
{
test: /\.css$/i,
use: ["style-loader", "css-loader"],
},
{
test: /\.(png|jpe?g|gif|svg|ttf)$/i,
use: [
{
loader: "file-loader",
},
],
},
],
},
};
module.exports = config;