diff options
-rw-r--r-- | packages/client/tsconfig.json | 4 | ||||
-rw-r--r-- | packages/server/tsconfig.json | 4 |
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, |