-
Notifications
You must be signed in to change notification settings - Fork 0
/
tsconfig.json
126 lines (126 loc) · 3.16 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
{
"$schema": "http://json.schemastore.org/tsconfig",
"extends": "./typescript/tsconfig.json",
"compilerOptions": {
/* Emit Options */
"target": "es5",
"module": "CommonJS",
"moduleResolution": "node",
"rootDir": "src",
"baseUrl": "src",
"outDir": "./lib",
"declarationDir": "./lib/typings",
"composite": true,
"useDefineForClassFields": false,
"tsBuildInfoFile": "./lib/ts-out-info.lib",
"emitDecoratorMetadata": false,
"experimentalDecorators": false,
/* JavaScript Support */
"allowJs": true,
"checkJs": false,
"resolveJsonModule": true,
/* Completeness */
"importHelpers": false,
"skipDefaultLibCheck": false,
"skipLibCheck": true,
"noResolve": false,
"noLib": false,
"moduleDetection": "force",
/* Bundled library declaration files that describe the target runtime environment. */
"lib": [
"dom",
"esnext"
],
/* Package names to be included without being referenced in a source file. */
"types": [
"node",
"jest"
],
"paths": {
".": [
"./lib/typings/index.d.ts"
],
"./functions": [
"./lib/typings/functions/index.d.ts"
],
"./helpers": [
"./lib/typings/helpers/index.d.ts"
],
"./tools": [
"./lib/typings/helpers/tools/index.d.ts"
],
"./assertions": [
"./lib/typings/helpers/assertions/index.d.ts"
],
"./helpers/tools": [
"./lib/typings/helpers/tools/index.d.ts"
],
"./helpers/assertions": [
"./lib/typings/helpers/assertions/index.d.ts"
],
"./constants": [
"./lib/typings/constants.d.ts"
],
"./types": [
"./lib/typings/types/index.d.ts"
],
"./chain": [
"./lib/typings/classes/chain.d.ts"
],
"./core": [
"./lib/typings/functions/core/index.d.ts"
]
},
"isolatedModules": false,
"esModuleInterop": true,
"preserveSymlinks": false,
"allowSyntheticDefaultImports": true,
"forceConsistentCasingInFileNames": true,
/* JavaScript Support */
"maxNodeModuleJsDepth": 1,
"disableSizeLimit": false,
/* Emit Options */
"downlevelIteration": true,
"emitBOM": false,
"incremental": true,
"newLine": "lf",
"noEmit": false,
"noEmitHelpers": false,
"noEmitOnError": false,
"preserveConstEnums": true,
"preserveValueImports": false,
"pretty": true,
"removeComments": false,
"stripInternal": false,
"preserveWatchOutput": false,
"sourceMap": true,
"declaration": true,
"declarationMap": true,
"inlineSources": true,
"inlineSourceMap": false,
"emitDeclarationOnly": false,
"disableSourceOfProjectReferenceRedirect": false,
"disableSolutionSearching": false,
"disableReferencedProjectLoad": false,
/* Compilation Options */
"noErrorTruncation": true,
"assumeChangesOnlyAffectDirectDependencies": false,
"plugins": [
{
"name": "typedoc-plugin-group"
}
]
},
"include": [
"./eslintrc.cjs",
"src/**/*",
"dts/**/*"
],
"exclude": [
"lib",
"node_modules",
"out",
"build",
"dist"
]
}