aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--packages/client/tsconfig.json4
-rw-r--r--packages/server/tsconfig.json4
2 files changed, 4 insertions, 4 deletions
diff --git a/packages/client/tsconfig.json b/packages/client/tsconfig.json
index ed61201..eedafcb 100644
--- a/packages/client/tsconfig.json
+++ b/packages/client/tsconfig.json
@@ -1,7 +1,7 @@
{
"compilerOptions": {
- "target": "esnext",
- "module": "esnext",
+ "target": "ES2020",
+ "module": "ES2020",
"strict": true,
"jsx": "preserve",
"moduleResolution": "node",
diff --git a/packages/server/tsconfig.json b/packages/server/tsconfig.json
index 8e44465..6ba87ff 100644
--- a/packages/server/tsconfig.json
+++ b/packages/server/tsconfig.json
@@ -1,7 +1,7 @@
{
"compilerOptions": {
- "target": "es5",
- "module": "commonjs",
+ "target": "ES2020",
+ "module": "ES2020",
"outDir": "dist",
"strict": true,
"esModuleInterop": true,