mirror of
https://github.com/signalapp/Signal-Desktop.git
synced 2026-07-13 16:43:53 +01:00
52 lines
1.4 KiB
JSON
52 lines
1.4 KiB
JSON
{
|
|
"include": ["./src"],
|
|
"compilerOptions": {
|
|
"target": "ES2025",
|
|
"lib": ["ESNext"],
|
|
|
|
"module": "esnext",
|
|
"rootDir": "./src",
|
|
"moduleResolution": "bundler",
|
|
"allowImportingTsExtensions": true,
|
|
"rewriteRelativeImportExtensions": true,
|
|
"resolvePackageJsonExports": true,
|
|
"resolvePackageJsonImports": true,
|
|
"noUncheckedSideEffectImports": true,
|
|
"resolveJsonModule": true,
|
|
|
|
"declaration": true,
|
|
"declarationMap": true,
|
|
"inlineSourceMap": true,
|
|
"noEmit": false,
|
|
"outDir": "./dist",
|
|
|
|
"isolatedModules": true,
|
|
"verbatimModuleSyntax": true,
|
|
"isolatedDeclarations": true,
|
|
"forceConsistentCasingInFileNames": true,
|
|
"erasableSyntaxOnly": false,
|
|
|
|
"strict": true,
|
|
"noImplicitAny": true,
|
|
"strictNullChecks": true,
|
|
"strictFunctionTypes": true,
|
|
"strictBindCallApply": true,
|
|
"strictPropertyInitialization": true,
|
|
"strictBuiltinIteratorReturn": true,
|
|
"noImplicitThis": true,
|
|
"useUnknownInCatchVariables": true,
|
|
"alwaysStrict": true,
|
|
"noUnusedLocals": true,
|
|
"noUnusedParameters": true,
|
|
"exactOptionalPropertyTypes": true,
|
|
"noImplicitReturns": true,
|
|
"noFallthroughCasesInSwitch": true,
|
|
"noUncheckedIndexedAccess": true,
|
|
"noImplicitOverride": true,
|
|
"noPropertyAccessFromIndexSignature": true,
|
|
"allowUnusedLabels": false,
|
|
"allowUnreachableCode": false,
|
|
"skipLibCheck": false
|
|
}
|
|
}
|