Fix webpack resolution

This commit is contained in:
willclarktech
2021-05-20 13:37:43 +02:00
parent 9401584a72
commit 6c5fd13a6a
18 changed files with 2811 additions and 15 deletions
-1
View File
@@ -54,7 +54,6 @@
"@types/node": "^15.0.1",
"@typescript-eslint/eslint-plugin": "^4.22.1",
"@typescript-eslint/parser": "^4.22.1",
"buffer": "^6.0.3",
"eslint": "^7.5",
"eslint-config-prettier": "^8.3.0",
"eslint-import-resolver-node": "^0.3.4",
+3 -2
View File
@@ -1,3 +1,4 @@
/* eslint-disable @typescript-eslint/naming-convention */
const glob = require("glob");
const path = require("path");
const webpack = require("webpack");
@@ -22,7 +23,7 @@ module.exports = [
resolve: {
fallback: {
buffer: false,
}
}
},
},
},
];