forked from tensorflow/tfjs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtsconfig_ts_library.json
48 lines (48 loc) · 992 Bytes
/
tsconfig_ts_library.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
{
"compilerOptions": {
"module": "ES2015",
"moduleResolution": "node",
"noImplicitAny": true,
"sourceMap": true,
"inlineSources": true,
"removeComments": false,
"preserveConstEnums": true,
"allowSyntheticDefaultImports": true,
"declaration": true,
"target": "es2017",
"lib": [
"es2017",
"dom"
],
"noUnusedLocals": true,
"noImplicitReturns": true,
"noImplicitThis": true,
"alwaysStrict": true,
"noUnusedParameters": false,
"pretty": true,
"noFallthroughCasesInSwitch": true,
"allowUnreachableCode": false,
"baseUrl": ".",
"paths": {
"@tensorflow/*": [
"./dist/bin/*"
]
},
"plugins": [
{
"name": "@bazel/tsetse",
"disabledRules": [
"must-use-promises",
"must-type-assert-json-parse",
"ban-promise-as-condition"
]
}
]
},
"include": [
"src/"
],
"exclude": [
"node_modules/"
]
}