-
Notifications
You must be signed in to change notification settings - Fork 1
/
tsconfig.json
459 lines (370 loc) · 11.3 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
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
// Visit https://www.typescriptlang.org/tsconfig to read more about this file
{
"compilerOptions": {
//////////////////////////////////////////////////////////////////////////////////////
// Projects
/**
* Save .tsbuildinfo files to allow for incremental compilation of projects.
*/
// "incremental": true,
/**
* Enable constraints that allow a TypeScript project to be used with project
* references.
*/
// "composite": true,
/**
* Specify the path to .tsbuildinfo incremental compilation file.
*/
// "tsBuildInfoFile": "./.tsbuildinfo",
/**
* Disable preferring source files instead of declaration files when referencing
* composite projects.
*/
// "disableSourceOfProjectReferenceRedirect": true,
/**
* Opt a project out of multi-project reference checking when editing.
*/
// "disableSolutionSearching": true,
/**
* Reduce the number of projects loaded automatically by TypeScript.
*/
// "disableReferencedProjectLoad": true,
//////////////////////////////////////////////////////////////////////////////////////
// Language and Environment
/**
* Set the JavaScript language version for emitted JavaScript and include compatible
* library declarations.
*/
"target": "es6",
/**
* Specify a set of bundled library declaration files that describe the target runtime
* environment.
*/
// "lib": [],
/**
* Specify what JSX code is generated.
*/
// "jsx": "preserve",
/**
* Enable experimental support for TC39 stage 2 draft decorators.
*/
// "experimentalDecorators": true,
/**
* Emit design-type metadata for decorated declarations in source files.
*/
// "emitDecoratorMetadata": true,
/**
* Specify the JSX factory function used when targeting React JSX emit, e.g.,
* 'React.createElement' or 'h'.
*/
// "jsxFactory": ""
/**
* Specify the JSX Fragment reference used for fragments when targeting React JSX
* emit, e.g., 'React.Fragment' or 'Fragment'.
*/
// "jsxFragmentFactory": "",
/**
* Specify module specifier used to import the JSX factory functions when using
* 'jsx: react-jsx*'.
*/
// "jsxImportSource": "",
/**
* Specify the object invoked for 'createElement'. This only applies when targeting
* 'react' JSX emit.
*/
// "reactNamespace": "",
/**
* Disable including any library files, including the default lib.d.ts.
*/
// "noLib": true,
/**
* Emit ECMAScript-standard-compliant class fields.
*/
// "useDefineForClassFields": true,
/**
* Control what method is used to detect module-format JS files.
*/
// "moduleDetection": "auto",
//////////////////////////////////////////////////////////////////////////////////////
// Modules
/**
* Specify what module code is generated.
*/
"module": "commonjs",
/**
* Specify the root folder within your source files.
*/
"rootDir": "src",
/**
* Specify how TypeScript looks up a file from a given module specifier.
*/
// "moduleResolution": "node",
/**
* Specify the base directory to resolve non-relative module names.
*/
// "baseUrl": "./",
/**
* Specify a set of entries that re-map imports to additional lookup locations.
*/
// "paths": {},
/**
* Allow multiple folders to be treated as one when resolving modules.
*/
// "rootDirs": [],
/**
* Specify multiple folders that act like './node_modules/@types'.
*/
// "typeRoots": [],
/**
* Specify type package names to be included without being referenced in a source
* file.
*/
// "types": [],
/**
* Allow accessing UMD globals from modules.
*/
// "allowUmdGlobalAccess": true,
/**
* List of file name suffixes to search when resolving a module.
*/
// "moduleSuffixes": [],
/**
* Enable importing .json files.
*/
// "resolveJsonModule": true,
/**
* Disallow 'import's, 'require's or '<reference>'s from expanding the number of files
* TypeScript should add to a project.
*/
// "noResolve": true,
//////////////////////////////////////////////////////////////////////////////////////
// JavaScript Support
/**
* Allow JavaScript files to be a part of your program. Use the 'checkJS' option to
* get errors from these files.
*/
// "allowJs": true,
/**
* Enable error reporting in type-checked JavaScript files.
*/
// "checkJs": true,
/**
* Specify the maximum folder depth used for checking JavaScript files from
* 'node_modules'. Only applicable with 'allowJs'.
*/
// "maxNodeModuleJsDepth": 1,
//////////////////////////////////////////////////////////////////////////////////////
// Emit
/**
* Generate .d.ts files from TypeScript and JavaScript files in your project.
*/
// "declaration": true,
/**
* Create sourcemaps for d.ts files.
*/
// "declarationMap": true,
/**
* Only output d.ts files and not JavaScript files.
*/
// "emitDeclarationOnly": true,
/**
* Create source map files for emitted JavaScript files.
*/
// "sourceMap": true,
/**
* Specify a file that bundles all outputs into one JavaScript file. If 'declaration'
* is true, also designates a file that bundles all .d.ts output.
*/
// "outFile": "./",
/**
* Specify an output folder for all emitted files.
*/
"outDir": "dist",
/**
* Disable emitting comments.
*/
// "removeComments": true,
/**
* Disable emitting files from a compilation.
*/
// "noEmit": false,
/**
* Allow importing helper functions from tslib once per project, instead of including
* them per-file.
*/
// "importHelpers": true,
/**
* Specify emit/checking behavior for imports that are only used for types.
*/
// "importsNotUsedAsValues": "remove",
/**
* Emit more compliant, but verbose and less performant JavaScript for iteration.
*/
// "downlevelIteration": true,
/**
* Specify the root path for debuggers to find the reference source code.
*/
// "sourceRoot": "",
/**
* Specify the location where debugger should locate map files instead of generated
* locations.
*/
// "mapRoot": "",
/**
* Include sourcemap files inside the emitted JavaScript.
*/
// "inlineSourceMap": true,
/**
* Include source code in the sourcemaps inside the emitted JavaScript.
*/
// "inlineSources": true,
/**
* Emit a UTF-8 Byte Order Mark (BOM) in the beginning of output files.
*/
// "emitBOM": true,
/**
* Set the newline character for emitting files.
*/
// "newLine": "crlf",
/**
* Disable emitting declarations that have '@internal' in their JSDoc comments.
*/
// "stripInternal": true,
/**
* Disable generating custom helper functions like '__extends' in compiled output.
*/
// "noEmitHelpers": true,
/**
* Disable emitting files if any type checking errors are reported.
*/
// "noEmitOnError": true,
/**
* Disable erasing 'const enum' declarations in generated code.
*/
// "preserveConstEnums": true,
/**
* Specify the output directory for generated declaration files.
*/
// "declarationDir": "./",
/**
* Preserve unused imported values in the JavaScript output that would otherwise be
* removed.
*/
// "preserveValueImports": true,
//////////////////////////////////////////////////////////////////////////////////////
// Interop Constraints
/**
* Ensure that each file can be safely transpiled without relying on other imports.
*/
// "isolatedModules": true,
/**
* Allow 'import x from y' when a module doesn't have a default export.
*/
// "allowSyntheticDefaultImports": true,
/**
* Emit additional JavaScript to ease support for importing CommonJS modules. This
* enables 'allowSyntheticDefaultImports' for type compatibility.
*/
"esModuleInterop": true,
/**
* Disable resolving symlinks to their realpath. This correlates to the same flag in
* node.
*/
// "preserveSymlinks": true,
/**
* Ensure that casing is correct in imports.
*/
"forceConsistentCasingInFileNames": true,
//////////////////////////////////////////////////////////////////////////////////////
// Type Checking
/**
* Enable all strict type-checking options.
*/
"strict": true,
/**
* Enable error reporting for expressions and declarations with an implied 'any' type.
*/
// "noImplicitAny": true,
/**
* When type checking, take into account 'null' and 'undefined'.
*/
// "strictNullChecks": true,
/**
* When assigning functions, check to ensure parameters and the return values are
* subtype-compatible.
*/
// "strictFunctionTypes": true,
/**
* Check that the arguments for 'bind', 'call', and 'apply' methods match the original
* function.
*/
// "strictBindCallApply": true,
/**
* Check for class properties that are declared but not set in the constructor.
*/
// "strictPropertyInitialization": true,
/**
* Enable error reporting when 'this' is given the type 'any'.
*/
// "noImplicitThis": true,
/**
* Default catch clause variables as 'unknown' instead of 'any'.
*/
// "useUnknownInCatchVariables": true,
/**
* Ensure 'use strict' is always emitted.
*/
// "alwaysStrict": true,
/**
* Enable error reporting when local variables aren't read.
*/
// "noUnusedLocals": true,
/**
* Raise an error when a function parameter isn't read.
*/
// "noUnusedParameters": true,
/**
* Interpret optional property types as written, rather than adding 'undefined'.
*/
// "exactOptionalPropertyTypes": true,
/**
* Enable error reporting for codepaths that do not explicitly return in a function.
*/
// "noImplicitReturns": true,
/**
* Enable error reporting for fallthrough cases in switch statements.
*/
// "noFallthroughCasesInSwitch": true,
/**
* Add 'undefined' to a type when accessed using an index.
*/
// "noUncheckedIndexedAccess": true,
/**
* Ensure overriding members in derived classes are marked with an override modifier.
*/
// "noImplicitOverride": true,
/**
* Enforces using indexed accessors for keys declared using an indexed type.
*/
// "noPropertyAccessFromIndexSignature": true,
/**
* Disable error reporting for unused labels.
*/
// "allowUnusedLabels": true,
/**
* Disable error reporting for unreachable code.
*/
// "allowUnreachableCode": true,
//////////////////////////////////////////////////////////////////////////////////////
// Completeness
/**
* Skip type checking .d.ts files that are included with TypeScript.
*/
// "skipDefaultLibCheck": true,
/**
* Skip type checking all .d.ts files.
*/
"skipLibCheck": true
},
"exclude": ["node_modules"]
}