aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAnhgelus Morhtuuzh <anhgelus.morhtuuzh@proton.me>2024-11-12 17:35:45 +0100
committerAnhgelus Morhtuuzh <anhgelus.morhtuuzh@proton.me>2024-11-12 17:35:45 +0100
commita1c8e3c27f6173adaf27db0cc8a1bbfb09b549ae (patch)
tree2cdf99da12a42651c066c8049947f79d15056c80
parentbb5feb14b9ee8fd36653cc624d038052965bf4d2 (diff)
build(ts): target ES2019 instead of ESNext
-rw-r--r--tsconfig.json2
1 files changed, 1 insertions, 1 deletions
diff --git a/tsconfig.json b/tsconfig.json
index 238655f..89d8d5a 100644
--- a/tsconfig.json
+++ b/tsconfig.json
@@ -2,7 +2,7 @@
"compilerOptions": {
// Enable latest features
"lib": ["ESNext", "DOM"],
- "target": "ESNext",
+ "target": "ES2019",
"module": "ESNext",
"moduleDetection": "force",
"jsx": "react-jsx",