forked from performancecopilot/grafana-pcp
-
Notifications
You must be signed in to change notification settings - Fork 0
/
webpack.config.js
135 lines (128 loc) · 4.44 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
const path = require('path');
const MonacoWebpackPlugin = require('monaco-editor-webpack-plugin');
function updateForkTsCheckerPluginSettings(plugins) {
for (const plugin of plugins) {
if (plugin.constructor.name === 'ForkTsCheckerWebpackPlugin') {
plugin.async = false;
return plugins;
}
}
return plugins;
}
function fixEntrypoint(entry) {
return {
...entry,
// overwrite module entrypoint
// workaround for https://github.com/grafana/grafana/issues/21785 / https://github.com/systemjs/systemjs/issues/2117
module: ['@grafana/ui', entry.module],
};
}
function enableReactMonacoEditor(externals) {
return externals.filter(e => e !== "react-monaco-editor");
}
function excludeExtractionLoaderForMonaco(rules) {
const MONACO_DIR = path.resolve(__dirname, './node_modules/monaco-editor');
for (const rule of rules) {
if (rule.test.toString() === /(dark|light)\.css$/.toString()) {
rule.exclude = [...rule.exclude || [], MONACO_DIR];
}
}
return rules;
}
function removeDataTestAttributeInProduction(production, rules) {
if (!production)
return rules;
// somehow it doesn't work if this plugin is added to the existing babel-loader rule...
return [
...rules,
{
test: /\.tsx?$/,
loaders: [
{
loader: 'babel-loader',
options: {
presets: [['@babel/preset-env', { modules: false }]],
plugins: [
['angularjs-annotate'],
['remove-object-properties', { regexp: 'data-test' }]
],
sourceMaps: true,
},
},
{
loader: 'ts-loader',
options: {
onlyCompileBundledFiles: true,
transpileOnly: true,
},
},
],
exclude: /(node_modules)/,
}
];
}
module.exports.getWebpackConfig = (config, options) => {
return {
...config,
externals: enableReactMonacoEditor(config.externals),
entry: fixEntrypoint(config.entry),
output: {
...config.output,
// required for dynamic loading of chunks
publicPath: 'public/plugins/performancecopilot-pcp-app/',
},
module: {
...config.module,
rules: removeDataTestAttributeInProduction(options.production, excludeExtractionLoaderForMonaco(config.module.rules)),
},
plugins: [
...updateForkTsCheckerPluginSettings(config.plugins),
new MonacoWebpackPlugin({
filename: 'monaco-[name].worker.js',
languages: [],
features: [ // enable same features as https://github.com/grafana/grafana/blob/master/scripts/webpack/webpack.common.js
'!accessibilityHelp',
'bracketMatching',
'caretOperations',
'!clipboard',
'!codeAction',
'!codelens',
'!colorDetector',
'!comment',
'!contextmenu',
'!coreCommands',
'!cursorUndo',
'!dnd',
'!find',
'folding',
'!fontZoom',
'!format',
'!gotoError',
'!gotoLine',
'!gotoSymbol',
'!hover',
'!iPadShowKeyboard',
'!inPlaceReplace',
'!inspectTokens',
'!linesOperations',
'!links',
'!multicursor',
'parameterHints',
'!quickCommand',
'!quickOutline',
'!referenceSearch',
'!rename',
'!smartSelect',
'!snippets',
'suggest',
'!toggleHighContrast',
'!toggleTabFocusMode',
'!transpose',
'!wordHighlighter',
'!wordOperations',
'!wordPartOperations',
],
}),
],
};
};