mirror of
https://github.com/zulip/zulip-desktop.git
synced 2025-11-02 04:53:17 +00:00
23 lines
497 B
JSON
23 lines
497 B
JSON
{
|
|
"compilerOptions": {
|
|
"target": "esnext",
|
|
"lib": ["dom", "dom.iterable", "esnext"],
|
|
"module": "commonjs",
|
|
"esModuleInterop": true,
|
|
"resolveJsonModule": true,
|
|
"skipLibCheck": true,
|
|
|
|
/* Strict type-checking */
|
|
"strict": true,
|
|
"noImplicitAny": true,
|
|
"strictNullChecks": false,
|
|
"noImplicitThis": true,
|
|
"alwaysStrict": true,
|
|
|
|
/* Additional checks */
|
|
"noUnusedLocals": true,
|
|
"noUnusedParameters": false,
|
|
"noImplicitReturns": true
|
|
}
|
|
}
|