From 13004e4014834ba060b13c71104e8ca8e9cf75f6 Mon Sep 17 00:00:00 2001 From: Ayuhito Date: Tue, 19 Jul 2022 17:59:31 +0300 Subject: [PATCH] feat!: change default target to node 14 --- src/cli.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/cli.ts b/src/cli.ts index 907bcb4..d198783 100644 --- a/src/cli.ts +++ b/src/cli.ts @@ -36,7 +36,7 @@ const argv = cli({ }, target: { type: [String], - default: [`node${process.versions.node}`], + default: ['node14'], description: 'Environments to support. `target` in tsconfig.json is automatically added. Defaults to the current Node.js version.', alias: 't', },