forked from tensorflow/tfjs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
tsconfig.json
53 lines (53 loc) · 1.34 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
{
"extends": "./tsconfig_base.json",
"compilerOptions": {
"baseUrl": ".",
"paths": {
"@tensorflow/tfjs-backend-cpu": [
"./tfjs-backend-cpu/src/index.ts",
],
"@tensorflow/tfjs-backend-webgl": [
"./tfjs-backend-webgl/src/index.ts",
],
"@tensorflow/tfjs-backend-webgpu": [
"./tfjs-backend-webgpu/src/index.ts",
],
"@tensorflow/tfjs-backend-wasm": [
"./tfjs-backend-wasm/src/index.ts",
],
"@tensorflow/tfjs-converter": [
"./tfjs-converter/src/index.ts",
],
"@tensorflow/tfjs-core": [
"./tfjs-core/src/index.ts",
],
"@tensorflow/tfjs-data": [
"./tfjs-data/src/index.ts",
],
"@tensorflow/tfjs-layers": [
"./tfjs-layers/src/index.ts",
],
"@tensorflow/tfjs-node": [
"./tfjs-node/src/index.ts",
],
"@tensorflow/tfjs-node-gpu": [
"./tfjs-node-gpu/src/index.ts",
],
"@tensorflow/tfjs-tfdf": [
"./tfjs-tfdf/src/index.ts",
],
"@tensorflow/tfjs-tflite": [
"./tfjs-tflite/src/index.ts",
],
"@tensorflow/tfjs": [
"./tfjs/src/index.ts",
],
"@tensorflow/tfjs-core/dist/*": [
"./tfjs-core/src/*",
],
"@tensorflow/tfjs-backend-cpu/dist/*": [
"./tfjs-backend-cpu/src/*",
]
}
}
}