-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
tsconfig.json
123 lines (121 loc) · 3.51 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
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
{
"include": ["**/.*.json", "**/*.json", "**/*.ts"],
"compilerOptions": {
// "charset": "utf8",
// "fallbackPolling": "dynamicPriorityPolling",
// "importsNotUsedAsValues": "error",
// "jsx": "react-jsx",
// "jsxFactory": "React.createElement",
// "jsxFragmentFactory": "React.Fragment",
// "jsxImportSource": "react",
// "listFilesOnly": false,
// "mapRoot": "../dist",
// "outDir": "dist",
// "reactNamespace": "React",
// "rootDir": ".",
// "sourceRoot": ".",
// "typeRoots": [],
// "watch": false,
// "watchDirectory": "useFsEvents",
// "watchFile": "useFsEvents",
"allowArbitraryExtensions": false,
"allowImportingTsExtensions": false,
"allowJs": false,
"allowSyntheticDefaultImports": true,
"allowUmdGlobalAccess": false,
"allowUnreachableCode": false,
"allowUnusedLabels": false,
"alwaysStrict": true,
"assumeChangesOnlyAffectDirectDependencies": true,
"checkJs": false,
"composite": true,
"customConditions": [],
"declaration": true,
"declarationMap": true,
"diagnostics": false,
"disableReferencedProjectLoad": true,
"disableSizeLimit": false,
"disableSolutionSearching": true,
"disableSourceOfProjectReferenceRedirect": false,
"downlevelIteration": true,
"emitBOM": false,
"emitDecoratorMetadata": true,
"emitDeclarationOnly": false,
"esModuleInterop": true,
"exactOptionalPropertyTypes": true,
"experimentalDecorators": true,
"extendedDiagnostics": false,
"forceConsistentCasingInFileNames": true,
"generateCpuProfile": "profile.cpuprofile",
"importHelpers": true,
"incremental": true,
"inlineSourceMap": false,
"inlineSources": true,
"isolatedModules": true,
"keyofStringsOnly": false,
"lib": ["ESNext"],
"listEmittedFiles": false,
"listFiles": false,
"maxNodeModuleJsDepth": 0,
"module": "NodeNext",
"moduleDetection": "force",
"moduleResolution": "NodeNext",
"newLine": "lf",
"noEmit": false,
"noEmitHelpers": false,
"noFallthroughCasesInSwitch": true,
"noEmitOnError": false,
"noErrorTruncation": false,
"noImplicitAny": true,
"noImplicitOverride": true,
"noImplicitReturns": true,
"noImplicitThis": true,
"noImplicitUseStrict": false,
"noLib": false,
"noPropertyAccessFromIndexSignature": true,
"noResolve": false,
"noStrictGenericChecks": false,
"noUncheckedIndexedAccess": true,
"noUnusedLocals": true,
"noUnusedParameters": true,
"paths": {},
"plugins": [],
"preserveConstEnums": true,
"preserveSymlinks": true,
"preserveValueImports": false,
"preserveWatchOutput": false,
"pretty": true,
"removeComments": true,
"resolveJsonModule": true,
"resolvePackageJsonExports": true,
"resolvePackageJsonImports": true,
"rootDirs": [],
"skipDefaultLibCheck": false,
"skipLibCheck": false,
"sourceMap": true,
"strict": true,
"strictBindCallApply": true,
"strictFunctionTypes": true,
"strictNullChecks": true,
"strictPropertyInitialization": true,
"stripInternal": false,
"suppressExcessPropertyErrors": false,
"suppressImplicitAnyIndexErrors": false,
"target": "ESNext",
"traceResolution": false,
"types": [],
"useDefineForClassFields": true,
"useUnknownInCatchVariables": true,
"verbatimModuleSyntax": true
},
"exclude": [
".git/",
".idea/",
".yarn/",
"coverage/",
"node_modules/",
"packages/",
"sarif/",
".pnp.*"
]
}