From 9940961e20bddcbc4ffa960fd3dd4153f107180f Mon Sep 17 00:00:00 2001 From: Avior Date: Sun, 11 Jul 2021 17:48:42 +0200 Subject: [PATCH] Downgraded to ES2015 to have better support browsers Signed-off-by: Avior --- tsconfig.json | 2 ++ 1 file changed, 2 insertions(+) diff --git a/tsconfig.json b/tsconfig.json index 93bee6d..b5e5e9d 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -3,6 +3,8 @@ "include": ["./src/tcgdex.node.ts"], "compilerOptions": { + "target": "ES2015", + "declaration": true, "declarationDir": "./dist/types",