From 21a907763ba7933f9a838248622557d39e3f1915 Mon Sep 17 00:00:00 2001 From: Joshua Potter Date: Fri, 1 Dec 2023 17:55:27 -0700 Subject: [PATCH] Default to es2016. --- specs/nodejs/template/tsconfig.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/specs/nodejs/template/tsconfig.json b/specs/nodejs/template/tsconfig.json index 56f4f6a..c027276 100644 --- a/specs/nodejs/template/tsconfig.json +++ b/specs/nodejs/template/tsconfig.json @@ -1,7 +1,7 @@ { // Visit https://aka.ms/tsconfig to read more about this file. "compilerOptions": { - "target": "es2015", + "target": "es2016", "module": "commonjs", "strict": true, "esModuleInterop": true,