diff options
author | HampusM <hampus@hampusmat.com> | 2021-07-25 22:46:09 +0200 |
---|---|---|
committer | HampusM <hampus@hampusmat.com> | 2021-07-25 22:46:09 +0200 |
commit | 25210ec3e13b6b47d8ba9a51263ab556cd7dc002 (patch) | |
tree | 5993d5b5ce0f25abb2d9a6f1669aab7c848529bc /packages/server | |
parent | 9739d929188ed74a10f0eea9d2f2e6bb4decf191 (diff) |
Changed Typescript js & module versions to ES2020
Diffstat (limited to 'packages/server')
-rw-r--r-- | packages/server/tsconfig.json | 4 |
1 files changed, 2 insertions, 2 deletions
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, |