Files
zulip-desktop/tsconfig.json
Anders Kaseorg 2b50b21752 tsconfig: Downgrade target to ES2021.
The ES2022 definition of Error#cause conflicts with @types/verror.

Signed-off-by: Anders Kaseorg <anders@zulip.com>
2022-03-09 15:54:05 -08:00

11 lines
192 B
JSON

{
"compilerOptions": {
"target": "es2021",
"module": "commonjs",
"esModuleInterop": true,
"resolveJsonModule": true,
"strict": true,
"noImplicitOverride": true
}
}