From 33ce83085b4c08225d3c81a39bb5d89cc4eb7640 Mon Sep 17 00:00:00 2001 From: David Murdoch <187813+davidmurdoch@users.noreply.github.com> Date: Fri, 7 Jul 2023 17:47:55 -0400 Subject: [PATCH] update webpack compilation target to node16.0 --- packages/ganache/webpack/webpack.node.config.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/ganache/webpack/webpack.node.config.ts b/packages/ganache/webpack/webpack.node.config.ts index e486be2c39..98f4b5b3e7 100644 --- a/packages/ganache/webpack/webpack.node.config.ts +++ b/packages/ganache/webpack/webpack.node.config.ts @@ -5,7 +5,7 @@ import merge from "webpack-merge"; import DeduplicatePlugin from "./deduplicate-plugin"; const config: webpack.Configuration = merge({}, base, { - target: "node10.7", + target: "node16.0", entry: { core: "./index.ts", cli: "./src/cli.ts"