Files
zulip-desktop/tsconfig.json
Anders Kaseorg 7f6699e235 tsconfig: Enable allowImportingTsExtensions.
Signed-off-by: Anders Kaseorg <anders@zulip.com>
2025-06-20 16:35:18 -07:00

21 lines
544 B
JSON

{
"compilerOptions": {
"noEmit": true,
"target": "esnext",
"module": "esnext",
"moduleResolution": "bundler",
"allowImportingTsExtensions": true,
"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"]
}
}