forked from ReactiveX/rxjs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtsconfig.json
34 lines (34 loc) · 864 Bytes
/
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
{
"compilerOptions": {
"incremental": true,
"removeComments": true,
"preserveConstEnums": true,
"sourceMap": true,
"strictFunctionTypes": true,
"noImplicitAny": true,
"noImplicitReturns": true,
"noImplicitThis": true,
"suppressImplicitAnyIndexErrors": true,
"moduleResolution": "node",
"stripInternal": false,
"noEmit": true,
"lib": [
"es5",
"es2018",
"dom"
],
"baseUrl": ".",
"paths": {
"rxjs": ["./src/index"],
"rxjs/operators": ["./src/operators/index"],
"rxjs/testing": ["./src/testing/index"],
"rxjs/ajax": ["./src/ajax/index"],
"rxjs/webSocket": ["./src/webSocket/index"],
"rxjs/fetch": ["./src/fetch/index"],
"rxjs/internal/*": ["./src/internal/*"]
}
},
"bazelOptions": {
"suppressTsconfigOverrideWarnings": true
}
}