mirror of https://github.com/zulip/zulip.git
28 lines
671 B
JSON
28 lines
671 B
JSON
|
{
|
||
|
"compilerOptions": {
|
||
|
/* Type Checking */
|
||
|
"exactOptionalPropertyTypes": true,
|
||
|
"noFallthroughCasesInSwitch": true,
|
||
|
"noImplicitOverride": true,
|
||
|
"noImplicitReturns": true,
|
||
|
"noUncheckedIndexedAccess": true,
|
||
|
"noUnusedLocals": true,
|
||
|
"noUnusedParameters": true,
|
||
|
"strict": true,
|
||
|
|
||
|
/* Emit */
|
||
|
"noEmit": true,
|
||
|
|
||
|
/* Interop Constraints */
|
||
|
"esModuleInterop": true,
|
||
|
"forceConsistentCasingInFileNames": true,
|
||
|
"isolatedModules": true,
|
||
|
|
||
|
/* Language and Environment */
|
||
|
"target": "esnext",
|
||
|
|
||
|
/* Projects */
|
||
|
"composite": true,
|
||
|
},
|
||
|
}
|