-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathtsconfig.base.json
41 lines (37 loc) · 984 Bytes
/
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
33
34
35
36
37
38
39
40
41
{
"compilerOptions": {
/* Moonrepo */
"composite": true,
"declaration": true,
"declarationMap": true,
"emitDeclarationOnly": true,
"incremental": true,
"noEmitOnError": true,
"skipLibCheck": true,
"experimentalDecorators": true,
"emitDecoratorMetadata": true,
/* Base Options: */
"esModuleInterop": true,
"target": "esnext",
"verbatimModuleSyntax": true,
"allowJs": true,
"resolveJsonModule": true,
"moduleDetection": "force",
"isolatedModules": true,
"allowImportingTsExtensions": false,
"downlevelIteration": true,
/* Strictness */
"strict": true,
"noUncheckedIndexedAccess": true,
"strictNullChecks": true,
"noImplicitAny": true,
"exactOptionalPropertyTypes": true,
"allowArbitraryExtensions": true,
"moduleResolution": "Bundler",
"module": "esnext",
"lib": ["esnext"],
"importHelpers": true,
"jsx": "react-jsx"
},
"exclude": ["**/dist/**"]
}