-
Notifications
You must be signed in to change notification settings - Fork 6
/
webpack.config.js
141 lines (132 loc) · 3.95 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
//@ts-check
/* eslint-disable no-undef */
/* eslint-disable @typescript-eslint/no-var-requires */
"use strict";
/** @typedef {import('webpack').Configuration} WebpackConfig **/
const webpack = require("webpack");
const ESLintPlugin = require("eslint-webpack-plugin");
const {
VSCodeExtensionsPackageJsonGenerator,
} = require("vscode-extensions-json-generator/webpack");
const path = require("path");
const WasmPackPlugin = require("@wasm-tool/wasm-pack-plugin");
const HtmlWebpackPlugin = require("html-webpack-plugin");
const CopyPlugin = require("copy-webpack-plugin");
const dist = path.resolve(__dirname, "dist");
const webviewPath = path.resolve(__dirname, "src/webview-ui");
/** @type WebpackConfig */
const baseConfig = {
mode: "development",
devtool: "inline-source-map",
infrastructureLogging: {
level: "log", // enables logging required for problem matchers
},
};
// Config for extension source code (to be run in a Node-based context)
/** @type WebpackConfig */
const extensionConfig = {
...baseConfig,
name: "extension",
target: "node",
entry: "./src/extension.ts",
externals: {
vscode: "commonjs vscode",
},
resolve: {
extensions: [".ts", ".js"],
},
module: {
rules: [
{
test: /\.ts$/,
exclude: [/node_modules/, /webview-ui/],
use: [
{
loader: "ts-loader",
},
],
},
{
test: /\.py$/i,
type: "asset/source",
},
],
},
output: {
path: dist,
filename: "extension.js",
libraryTarget: "commonjs2",
devtoolModuleFilenameTemplate: "../[resource-path]",
},
plugins: [
new ESLintPlugin(),
new VSCodeExtensionsPackageJsonGenerator("vscode-ext-config.json"),
],
dependencies: ["webview"]
};
// Config for webview source code
/** @type WebpackConfig */
const WebviewConfig = {
...baseConfig,
name: "webview",
entry: {
index: path.resolve(webviewPath, "index.js"),
},
output: {
path: dist,
filename: "webview.js",
},
plugins: [
new HtmlWebpackPlugin({
template: path.resolve(webviewPath, "index.html"),
}),
new WasmPackPlugin({
crateDirectory: webviewPath,
outDir: path.resolve(webviewPath, "pkg"),
outName: "webview",
}),
// Have this example work in Edge which doesn't ship `TextEncoder` or
// `TextDecoder` at this time.
new webpack.ProvidePlugin({
TextDecoder: ["text-encoding", "TextDecoder"],
TextEncoder: ["text-encoding", "TextEncoder"],
}),
new CopyPlugin({
patterns: [
{
from: path.posix.join(
__dirname.replace(/\\/g, "/"),
"node_modules",
"@vscode",
"codicons",
"dist",
"codicon.{ttf,css}"
),
to: path.posix.join(
__dirname.replace(/\\/g, "/"),
"dist",
"[name][ext]"
),
},
{
from: path.posix.join(
webviewPath.replace(/\\/g, "/"),
"icons",
"dist",
"svifpd-icons.{ttf,css}"
),
to: path.posix.join(
__dirname.replace(/\\/g, "/"),
"dist",
"[name][ext]"
),
},
],
}),
],
experiments: {
asyncWebAssembly: true,
syncWebAssembly: true,
},
};
module.exports = [WebviewConfig, extensionConfig];