forked from status-im/status-web
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtsconfig.base.json
32 lines (32 loc) · 1.04 KB
/
tsconfig.base.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
{
"$schema": "https://json.schemastore.org/tsconfig",
// "extends": "@tsconfig/strictest/tsconfig.json",
"compilerOptions": {
// "tsBuildInfoFile": "./node_modules/.cache/tsconfig.tsbuildinfo",
"incremental": true,
"module": "ES2020",
"moduleResolution": "node",
"target": "ES2020",
"jsx": "react-jsx",
"declaration": true,
"declarationMap": true,
// "emitDeclarationOnly": true,
"sourceMap": true,
"esModuleInterop": true,
"allowSyntheticDefaultImports": true,
"forceConsistentCasingInFileNames": true,
"isolatedModules": true,
"noEmit": true,
"strict": true,
"noUnusedLocals": true,
"noUnusedParameters": true,
// "exactOptionalPropertyTypes": true,
"noFallthroughCasesInSwitch": true,
// "noImplicitReturns": true,
// "noUncheckedIndexedAccess": true,
// "noPropertyAccessFromIndexSignature": true /* Enforces using indexed accessors for keys declared using an indexed type */,
"skipLibCheck": true,
"pretty": true,
"resolveJsonModule": true
}
}