forked from takram-design-engineering/three-geospatial
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtsconfig.base.json
More file actions
68 lines (68 loc) · 1.75 KB
/
tsconfig.base.json
File metadata and controls
68 lines (68 loc) · 1.75 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
{
"compileOnSave": false,
"compilerOptions": {
"rootDir": ".",
"sourceMap": true,
"declaration": false,
"moduleResolution": "bundler",
"emitDecoratorMetadata": true,
"experimentalDecorators": true,
"importHelpers": true,
"target": "es2017",
"module": "esnext",
"lib": [
"es2022",
"dom"
],
"strict": true,
"noImplicitOverride": true,
"skipLibCheck": true,
"skipDefaultLibCheck": true,
"baseUrl": ".",
"paths": {
"@takram/three-atmosphere": [
"packages/atmosphere/src/index.ts"
],
"@takram/three-atmosphere/r3f": [
"packages/atmosphere/src/r3f/index.ts"
],
"@takram/three-atmosphere/shaders": [
"packages/atmosphere/src/shaders/index.ts"
],
"@takram/three-atmosphere/shaders/bruneton": [
"packages/atmosphere/src/shaders/bruneton/index.ts"
],
"@takram/three-atmosphere/webgpu": [
"packages/atmosphere/src/webgpu/index.ts"
],
"@takram/three-clouds": [
"packages/clouds/src/index.ts"
],
"@takram/three-clouds/r3f": [
"packages/clouds/src/r3f/index.ts"
],
"@takram/three-geospatial": [
"packages/core/src/index.ts"
],
"@takram/three-geospatial-effects": [
"packages/effects/src/index.ts"
],
"@takram/three-geospatial-effects/r3f": [
"packages/effects/src/r3f/index.ts"
],
"@takram/three-geospatial/r3f": [
"packages/core/src/r3f/index.ts"
],
"@takram/three-geospatial/shaders": [
"packages/core/src/shaders/index.ts"
],
"@takram/three-geospatial/webgpu": [
"packages/core/src/webgpu/index.ts"
]
}
},
"exclude": [
"node_modules",
"tmp"
]
}