-
Notifications
You must be signed in to change notification settings - Fork 79
/
tsconfig.json
65 lines (65 loc) · 1.99 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
{
"compileOnSave": false,
"compilerOptions": {
"target": "es5",
"module": "commonjs",
"isolatedModules": false,
"jsx": "react",
"experimentalDecorators": true,
"emitDecoratorMetadata": true,
"declaration": false,
"noImplicitAny": false,
"removeComments": true,
"noLib": false,
"preserveConstEnums": true,
"suppressImplicitAnyIndexErrors": true,
"noEmit": true,
"typeRoots": ["./**/*.ts"],
"baseUrl": "./",
"paths": {
"@_types/*": ["_types/*"],
"@global/*": ["_global/*"],
"@spec_utils/*": ["_spec_utils/*"],
"@async_search/*": ["async_search/*"],
"@autoscaling/*": ["autoscaling/*"],
"@cat/*": ["cat/*"],
"@ccr/*": ["ccr/*"],
"@cluster/*": ["cluster/*"],
"@dangling_indices/*": ["dangling_indices/*"],
"@enrich/*": ["enrich/*"],
"@eql/*": ["eql/*"],
"@esql/*": ["esql/*"],
"@features/*": ["features/*"],
"@fleet/*": ["fleet/*"],
"@graph/*": ["graph/*"],
"@ilm/*": ["ilm/*"],
"@indices/*": ["indices/*"],
"@ingest/*": ["ingest/*"],
"@inference/*": ["inference/*"],
"@license/*": ["license/*"],
"@logstash/*": ["logstash/*"],
"@migration/*": ["migration/*"],
"@ml/*": ["ml/*"],
"@monitoring/*": ["monitoring/*"],
"@nodes/*": ["nodes/*"],
"@query_ruleset/*": ["query_ruleset/*"],
"@rollup/*": ["rollup/*"],
"@searchable_snapshots/*": ["searchable_snapshots/*"],
"@search_application/*": ["search_application/*"],
"@security/*": ["security/*"],
"@shutdown/*": ["shutdown/*"],
"@slm/*": ["slm/*"],
"@snapshot/*": ["snapshot/*"],
"@sql/*": ["sql/*"],
"@ssl/*": ["ssl/*"],
"@synonyms/*": ["synonyms/*"],
"@tasks/*": ["tasks/*"],
"@text_structure/*": ["text_structure/*"],
"@transform/*": ["transform/*"],
"@watcher/*": ["watcher/*"],
"@xpack/*": ["xpack/*"]
}
},
"include": ["./**/*.ts"],
"exclude": ["node_modules"]
}