-
Notifications
You must be signed in to change notification settings - Fork 0
/
tsconfig.json
63 lines (63 loc) · 1.81 KB
/
tsconfig.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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
{
"compilerOptions": {
"allowJs": true,
"allowUnreachableCode":false,
"allowUnusedLabels":false,
"alwaysStrict": false,
"allowSyntheticDefaultImports": true,
"jsx": "react-native",
"lib": ["dom", "esnext"],
"declarationMap":false,
"diagnostics":false,
"disableSizeLimit":false,
"downlevelIteration":false,
"emitBOM":false,
"emitDeclarationOnly":false,
"emitDecoratorMetadata":false,
"esModuleInterop":false,
"experimentalDecorators":false,
"extendedDiagnostics":false,
"forceConsistentCasingInFileNames":false,
"moduleResolution": "node",
"composite": false,
"noEmit": true,
"noEmitHelpers": false,
"noEmitOnError": false,
"noErrorTruncation": false,
"noFallthroughCasesInSwitch": false,
"noImplicitAny": false,
"noImplicitReturns": false,
"noImplicitThis": false,
"noImplicitUseStrict": false,
"noLib": false,
"noResolve": false,
"noStrictGenericChecks": false,
"noUnusedLocals": false,
"noUnusedParameters": false,
"preserveConstEnums": false,
"preserveWatchOutput": false,
"pretty": false,
"removeComments": true,
"rootDirs": [],
"showConfig": false,
"skipDefaultLibCheck": false,
"sourceMap": true,
"sourceRoot": "",
"strict": false,
"strictBindCallApply": false,
"strictFunctionTypes": false,
"strictPropertyInitialization": false,
"strictNullChecks": false,
"suppressExcessPropertyErrors": false,
"suppressImplicitAnyIndexErrors": false,
"traceResolution": false,
"types": [],
"typeRoots": [],
"useDefineForClassFields": false,
"skipLibCheck": true,
"resolveJsonModule": true,
},
"extends": "@tsconfig/react-native/tsconfig.json",
"include": ["src/**/*"],
"exclude": ["node_modules", "**/*.spec.ts","*.js"]
}