-
-
Notifications
You must be signed in to change notification settings - Fork 3
/
tsconfig.base.json
36 lines (36 loc) · 1.43 KB
/
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
{
"compileOnSave": false,
"compilerOptions": {
"rootDir": ".",
"sourceMap": true,
"declaration": false,
"moduleResolution": "node",
"emitDecoratorMetadata": true,
"experimentalDecorators": true,
"importHelpers": true,
"target": "es2017",
"module": "esnext",
"lib": ["es2019", "dom"],
"skipLibCheck": true,
"skipDefaultLibCheck": true,
"baseUrl": ".",
"paths": {
"@digipair-vision/camrender": ["libs/camrender/src/index.ts"],
"@digipair-vision/core": ["libs/core/src/index.ts"],
"@digipair-vision/design-system": ["libs/design-system/src/index.ts"],
"@digipair-vision/exporter": ["libs/exporter/src/index.ts"],
"@digipair-vision/html": ["libs/html/src/index.ts"],
"@digipair-vision/info": ["libs/info/src/index.ts"],
"@digipair-vision/mesh": ["libs/mesh/src/index.ts"],
"@digipair-vision/observe": ["libs/observe/src/index.ts"],
"@digipair-vision/player": ["libs/player/src/index.ts"],
"@digipair-vision/ready-player-me": ["libs/ready-player-me/src/index.ts"],
"@digipair-vision/router": ["libs/router/src/index.ts"],
"@digipair-vision/scene": ["libs/scene/src/index.ts"],
"@digipair-vision/screen-shared": ["libs/screen-shared/src/index.ts"],
"@digipair-vision/spline": ["libs/spline/src/index.ts"],
"@digipair-vision/teleport": ["libs/teleport/src/index.ts"]
}
},
"exclude": ["node_modules", "tmp"]
}