File tree Expand file tree Collapse file tree 1 file changed +7
-2
lines changed Expand file tree Collapse file tree 1 file changed +7
-2
lines changed Original file line number Diff line number Diff line change @@ -11,11 +11,16 @@ const path = require('path');
11
11
const extensionConfig = {
12
12
target : 'node' , // vscode extensions run in a Node.js-context 📖 -> https://webpack.js.org/configuration/node/
13
13
mode : 'none' , // this leaves the source code as close as possible to the original (when packaging we set this to 'production')
14
-
15
14
infrastructureLogging : {
16
15
level : 'log'
17
16
} ,
18
-
17
+ ignoreWarnings : [
18
+ {
19
+ // Ignore: Critical dependency: the request of a dependency is an expression
20
+ // keyv is a dependency of got -> cacheable-request. The cache functionallity is not used by this extension.
21
+ module : / \. \/ n o d e _ m o d u l e s \/ k e y v \/ s r c \/ i n d e x \. j s /
22
+ }
23
+ ] ,
19
24
entry : './src/extension.ts' , // the entry point of this extension, 📖 -> https://webpack.js.org/configuration/entry-context/
20
25
output : {
21
26
// the bundle is stored in the 'dist' folder (check package.json), 📖 -> https://webpack.js.org/configuration/output/
You can’t perform that action at this time.
0 commit comments