From b3ec35974fdabcdde74cf56172f8dec96451c4ba Mon Sep 17 00:00:00 2001 From: Abhijit Dey <57581122+InocentumAbhijit@users.noreply.github.com> Date: Mon, 21 Dec 2020 19:00:47 +0530 Subject: [PATCH] Update tsconfig.json Updated target from es5 to es6 to fix class issue with NativeScript 7 --- src/tsconfig.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/tsconfig.json b/src/tsconfig.json index 5e33b3f..278a2fd 100644 --- a/src/tsconfig.json +++ b/src/tsconfig.json @@ -1,6 +1,6 @@ { "compilerOptions": { - "target": "es5", + "target": "es6", "module": "commonjs", "declaration": true, "removeComments": true,