forked from tensorflow/tfjs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
tsconfig_base.json
46 lines (46 loc) · 976 Bytes
/
tsconfig_base.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
{
"compilerOptions": {
"module": "ES2015",
"moduleResolution": "node",
"noImplicitAny": true,
"sourceMap": true,
"inlineSources": true,
"removeComments": false,
"preserveConstEnums": true,
"allowSyntheticDefaultImports": true,
"declaration": true,
"target": "es2017",
"lib": [
"es2019",
"dom"
],
"outDir": "./dist",
"noUnusedLocals": true,
"noImplicitReturns": true,
"noImplicitThis": true,
"alwaysStrict": true,
"noUnusedParameters": false,
"pretty": true,
"noFallthroughCasesInSwitch": true,
"allowUnreachableCode": false,
"noImplicitOverride": true,
"incremental": true
},
"include": [
"**/src/"
],
"exclude": [
"bazel-out",
"dist",
"tfjs",
"tfjs-automl",
"tfjs-backend-nodegl",
"tfjs-backend-wasm",
"tfjs-backend-webgpu",
"tfjs-node",
"tfjs-node-gpu",
"tfjs-react-native",
"tfjs-vis",
"node_modules"
]
}