-
Notifications
You must be signed in to change notification settings - Fork 49
/
webpack.config.js
116 lines (109 loc) · 2.76 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
/* [note] modified from github.com/microsoft/vscode-pull-request-github MIT licenced*/
const path = require('path');
const webpack = require('webpack');
function getWebviewConfig(env) {
let webview = {
name: 'webview',
mode: env.production ? 'production' : 'development',
entry: {
index: './infoview/index.tsx'
},
module: {
rules: [
{
test: /\.tsx?$/,
use: 'ts-loader',
exclude: /node_modules/
},
{
test: /\.css/,
use: [{
loader: 'style-loader',
options: {
// copied from https://webpack.js.org/loaders/style-loader/#insert
// makes sure that the styles are inserted at the top of the head object instead of the default behaviour at the bottom.
insert: function insertAtTop(element) {
var parent = document.querySelector('head');
// eslint-disable-next-line no-underscore-dangle
var lastInsertedElement =
window._lastElementInsertedByStyleLoader;
if (!lastInsertedElement) {
parent.insertBefore(element, parent.firstChild);
} else if (lastInsertedElement.nextSibling) {
parent.insertBefore(element, lastInsertedElement.nextSibling);
} else {
parent.appendChild(element);
}
// eslint-disable-next-line no-underscore-dangle
window._lastElementInsertedByStyleLoader = element;
},
},
}, 'css-loader']
},
{
test: /\.svg/,
use: ['svg-loader']
},
{
test: /\.(woff|woff2|ttf)$/,
use: {
loader: 'url-loader',
},
},
]
},
resolve: {
extensions: ['.tsx', '.ts', '.js', '.svg']
},
devtool: !env.production ? 'inline-source-map' : undefined,
output: {
filename: '[name].js',
path: path.resolve(__dirname, 'media')
},
plugins: [
new webpack.IgnorePlugin(/^\.\/locale$/, /moment$/),
]
};
return webview;
}
function getExtensionConfig(env) {
let config = {
name: 'extension',
mode: env.production ? 'production' : 'development',
target: 'node',
entry: {
extension: './src/extension.ts'
},
module: {
rules: [
{
test: /\.tsx?$/,
use: 'ts-loader',
exclude: /node_modules/
}
]
},
resolve: {
extensions: ['.tsx', '.ts', '.js'],
alias: {
"node-fetch": path.resolve(__dirname, 'node_modules/node-fetch/lib/index.js'),
}
},
devtool: !env.production ? 'source-map' : undefined,
output: {
filename: '[name].js',
path: path.resolve(__dirname, 'out'),
libraryTarget: "commonjs",
devtoolModuleFilenameTemplate: 'file:///[absolute-resource-path]'
},
externals: {
'vscode': 'commonjs vscode'
}
};
return config;
}
module.exports = function (env) {
env = env || {};
env.production = !!env.production;
return [getWebviewConfig(env), getExtensionConfig(env)];
};