-
Notifications
You must be signed in to change notification settings - Fork 33
Expand file tree
/
Copy pathtsconfig.base.json
More file actions
76 lines (76 loc) · 3.04 KB
/
tsconfig.base.json
File metadata and controls
76 lines (76 loc) · 3.04 KB
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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
{
"compileOnSave": false,
"compilerOptions": {
"rootDir": ".",
"sourceMap": true,
"declaration": false,
"moduleResolution": "bundler",
"emitDecoratorMetadata": true,
"experimentalDecorators": true,
"importHelpers": true,
"target": "es2022",
"module": "esnext",
"lib": ["es2022", "es2020", "dom"],
"skipLibCheck": true,
"skipDefaultLibCheck": true,
"baseUrl": ".",
"paths": {
"angular-three": ["libs/core/src/index.ts", "./node_modules/angular-three"],
"angular-three-cannon": ["libs/cannon/src/index.ts"],
"angular-three-cannon/body": ["libs/cannon/body/src/index.ts"],
"angular-three-cannon/constraint": ["libs/cannon/constraint/src/index.ts"],
"angular-three-cannon/debug": ["libs/cannon/debug/src/index.ts"],
"angular-three-plugin": ["libs/plugin/src/index.ts"],
"angular-three-postprocessing": ["libs/postprocessing/src/index.ts"],
"angular-three-postprocessing/n8ao": ["libs/postprocessing/n8ao/src/index.ts"],
"angular-three-rapier": ["libs/rapier/src/index.ts"],
"angular-three-rapier/addons": ["libs/rapier/addons/src/index.ts"],
"angular-three-soba": ["libs/soba/src/index.ts", "./node_modules/angular-three-soba"],
"angular-three-soba/abstractions": [
"libs/soba/abstractions/src/index.ts",
"./node_modules/angular-three-soba/abstractions"
],
"angular-three-soba/cameras": [
"libs/soba/cameras/src/index.ts",
"./node_modules/angular-three-soba/cameras"
],
"angular-three-soba/controls": [
"libs/soba/controls/src/index.ts",
"./node_modules/angular-three-soba/controls"
],
"angular-three-soba/gizmos": ["libs/soba/gizmos/src/index.ts", "./node_modules/angular-three-soba/gizmos"],
"angular-three-soba/loaders": [
"libs/soba/loaders/src/index.ts",
"./node_modules/angular-three-soba/loaders"
],
"angular-three-soba/materials": [
"libs/soba/materials/src/index.ts",
"./node_modules/angular-three-soba/materials"
],
"angular-three-soba/misc": ["libs/soba/misc/src/index.ts", "./node_modules/angular-three-soba/misc"],
"angular-three-soba/performances": [
"libs/soba/performances/src/index.ts",
"./node_modules/angular-three-soba/performances"
],
"angular-three-soba/shaders": [
"libs/soba/shaders/src/index.ts",
"./node_modules/angular-three-soba/shaders"
],
"angular-three-soba/staging": [
"libs/soba/staging/src/index.ts",
"./node_modules/angular-three-soba/staging"
],
"angular-three-soba/stats": ["libs/soba/stats/src/index.ts", "./node_modules/angular-three-soba/stats"],
"angular-three-soba/vanilla-exports": [
"libs/soba/vanilla-exports/src/index.ts",
"./node_modules/angular-three-soba/vanilla-exports"
],
"angular-three-theatre": ["libs/theatre/src/index.ts"],
"angular-three-tweakpane": ["libs/tweakpane/src/index.ts"],
"angular-three/dom": ["libs/core/dom/src/index.ts", "./node_modules/angular-three/dom"],
"angular-three/nativescript": ["libs/core/nativescript/src/index.ts"],
"angular-three/testing": ["libs/core/testing/src/index.ts"]
}
},
"exclude": ["node_modules", "tmp"]
}