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/client | |
parent | 9739d929188ed74a10f0eea9d2f2e6bb4decf191 (diff) |
Changed Typescript js & module versions to ES2020
Diffstat (limited to 'packages/client')
-rw-r--r-- | packages/client/tsconfig.json | 4 |
1 files changed, 2 insertions, 2 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", |