mirror of
https://github.com/status-im/os.status.network.git
synced 2026-08-31 02:41:08 +00:00
51 lines
1.4 KiB
JSON
51 lines
1.4 KiB
JSON
{
|
|
"compilerOptions": {
|
|
/* Emit */
|
|
"target": "ES2020",
|
|
"lib": ["ES2020", "DOM", "DOM.Iterable"],
|
|
"declaration": true,
|
|
"declarationMap": false,
|
|
"sourceMap": false,
|
|
"jsx": "react",
|
|
"module": "esnext",
|
|
"noEmit": true,
|
|
|
|
/* Strict Type-Checking Options */
|
|
"allowUnreachableCode": false,
|
|
// Too hard to turn on
|
|
"exactOptionalPropertyTypes": false,
|
|
"noFallthroughCasesInSwitch": true,
|
|
"noImplicitOverride": true,
|
|
"noImplicitReturns": true,
|
|
/* strict family */
|
|
"strict": true,
|
|
"alwaysStrict": true,
|
|
"noImplicitAny": false,
|
|
"noImplicitThis": true,
|
|
"strictBindCallApply": true,
|
|
"strictFunctionTypes": true,
|
|
"strictNullChecks": false,
|
|
"strictPropertyInitialization": false,
|
|
"useUnknownInCatchVariables": true,
|
|
/* Handled by ESLint */
|
|
"noUnusedLocals": false,
|
|
"noUnusedParameters": false,
|
|
"importsNotUsedAsValues": "remove",
|
|
|
|
/* Module Resolution */
|
|
"moduleResolution": "node",
|
|
"resolveJsonModule": true,
|
|
"allowSyntheticDefaultImports": true,
|
|
"esModuleInterop": true,
|
|
"forceConsistentCasingInFileNames": true,
|
|
"isolatedModules": true,
|
|
"allowJs": true,
|
|
"allowImportingTsExtensions": false,
|
|
"skipLibCheck": true // @types/webpack and webpack/types.d.ts are not the same thing
|
|
},
|
|
"include": ["src"],
|
|
"exclude": [
|
|
"node_modules",
|
|
]
|
|
}
|