aboutsummaryrefslogtreecommitdiff
path: root/tsconfig.json
diff options
context:
space:
mode:
authormat <27899617+mat-1@users.noreply.github.com>2021-02-13 15:11:55 -0600
committermat <27899617+mat-1@users.noreply.github.com>2021-02-13 15:11:55 -0600
commit55bebce01352854368d5ccb57d0b51390d808f78 (patch)
tree28afc9185bd68b25cb87fddea4edff7d8f6e4fce /tsconfig.json
parentd6d478d6165d7c17124dda64008b749cfb6b5c97 (diff)
downloadskyblock-api-55bebce01352854368d5ccb57d0b51390d808f78.tar.gz
skyblock-api-55bebce01352854368d5ccb57d0b51390d808f78.tar.bz2
skyblock-api-55bebce01352854368d5ccb57d0b51390d808f78.zip
change compile target to es2019
Diffstat (limited to 'tsconfig.json')
-rw-r--r--tsconfig.json2
1 files changed, 1 insertions, 1 deletions
diff --git a/tsconfig.json b/tsconfig.json
index e0bd8b9..745d9a9 100644
--- a/tsconfig.json
+++ b/tsconfig.json
@@ -2,7 +2,7 @@
"compilerOptions": {
"module": "commonjs",
"lib": ["esnext", "dom", "DOM.Iterable"],
- "target": "esnext",
+ "target": "es2019",
"esModuleInterop": true,
"outDir": "build"
},