Files
zulip-desktop/tsconfig.json
Anders Kaseorg 39fd0e9877 tsconfig: Work around @sentry/electron regression.
Signed-off-by: Anders Kaseorg <anders@zulip.com>
2024-08-07 14:58:13 -07:00

20 lines
504 B
JSON

{
"compilerOptions": {
"noEmit": true,
"target": "esnext",
"module": "esnext",
"moduleResolution": "bundler",
"esModuleInterop": true,
"paths": {
// https://github.com/getsentry/sentry-electron/issues/957
"@sentry/node/build/types/integrations/anr/common": [
"./node_modules/@sentry/node/build/types/integrations/anr/common"
]
},
"resolveJsonModule": true,
"strict": true,
"noImplicitOverride": true,
"types": ["vite/client"]
}
}