forked from anuraghazra/github-readme-stats
-
Notifications
You must be signed in to change notification settings - Fork 10
Expand file tree
/
Copy pathtsconfig.base.json
More file actions
41 lines (36 loc) · 1.07 KB
/
tsconfig.base.json
File metadata and controls
41 lines (36 loc) · 1.07 KB
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
33
34
35
36
37
38
39
40
41
{
// Visit https://aka.ms/tsconfig to read more about this file
"compilerOptions": {
// Type Checking
"strict": true,
"noImplicitReturns": true,
"noImplicitOverride": true,
"noUnusedLocals": true,
"noUnusedParameters": true,
"noFallthroughCasesInSwitch": true,
"noPropertyAccessFromIndexSignature": true,
"noUncheckedIndexedAccess": true,
"exactOptionalPropertyTypes": true,
// Modules
"module": "nodenext",
"target": "esnext",
"types": [],
"noUncheckedSideEffectImports": true,
"moduleDetection": "force",
"customConditions": [
/**
* Custom condition that resolved to original typescript source
* It allows realtime typechecking between packages without the need to rebuild them.
* Keep in sync with `eslint.config.js` `createTypeScriptImportResolver`
*/
"@stats/source"
],
// Interop Constraints
"verbatimModuleSyntax": true,
"isolatedModules": true,
// Language and Environment
"jsx": "react-jsx",
// Completeness
"skipLibCheck": true
}
}