forked from tensorflow/tfjs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
tsconfig_tslint.json
51 lines (51 loc) · 1.79 KB
/
tsconfig_tslint.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
{
"extends": "./tsconfig.json",
"compilerOptions": {
"outDir": "./tsc-dist",
"baseUrl": ".",
"paths": {
"@tensorflow/tfjs-backend-cpu": ["tfjs-backend-cpu/src/index.ts"],
"@tensorflow/tfjs-backend-cpu/dist/*": ["tfjs-backend-cpu/src/*"],
"@tensorflow/tfjs-backend-webgl": ["tfjs-backend-webgl/src/index.ts"],
"@tensorflow/tfjs-backend-webgl/dist/*": ["tfjs-backend-webgl/src/*"],
"@tensorflow/tfjs-backend-webgpu": ["tfjs-backend-webgpu/src/index.ts"],
"@tensorflow/tfjs-backend-webgpu/dist/*": ["tfjs-backend-webgpu/src/*"],
"@tensorflow/tfjs-converter": ["tfjs-converter/src/index.ts"],
"@tensorflow/tfjs-converter/dist/*": ["tfjs-converter/src/*"],
"@tensorflow/tfjs-core": ["tfjs-core/src/index.ts"],
"@tensorflow/tfjs-core/dist/*": ["tfjs-core/src/*"],
"@tensorflow/tfjs-layers": ["tfjs-layers/src/index.ts"],
"@tensorflow/tfjs-layers/dist/*": ["tfjs-layers/src/*"],
"@tensorflow/tfjs-data": ["tfjs-data/src/index.ts"],
"@tensorflow/tfjs-data/dist/*": ["tfjs-data/src/*"],
"@tensorflow/tfjs-tfdf": ["tfjs-tfdf/src/index.ts"],
"@tensorflow/tfjs-tfdf/dist/*": ["tfjs-tfdf/src/*"],
"@tensorflow/tfjs-tflite": ["tfjs-tflite/src/index.ts"],
"@tensorflow/tfjs-tflite/dist/*": ["tfjs-tflite/src/*"],
"@tensorflow/tfjs-backend-wasm": ["tfjs-backend-wasm/src/index.ts"],
"@tensorflow/tfjs-backend-wasm/dist/*": ["tfjs-backend-wasm/src/*"]
},
"rootDirs": [
".",
"dist/bin/"
]
},
"include": [
"**/src",
],
"exclude": [
"**/dist",
"bazel-out",
"dist",
"link-package",
"node_modules",
"tfjs-backend-nodegl",
"tfjs-inference",
"tfjs-node",
"tfjs-node-gpu",
"tfjs-react-native",
"tfjs-vis",
"tsc-dist",
"wasm-dist"
]
}