-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtsconfig.build.json
48 lines (48 loc) · 1.15 KB
/
tsconfig.build.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
{
"compilerOptions": {
"target": "esnext",
"lib": [
"DOM",
"DOM.Iterable",
"ESNext",
"WebWorker"
],
"checkJs": false,
"strictNullChecks": true,
"outDir": "dist",
"declarationDir": "dist",
"declaration": true,
"skipLibCheck": true,
"noEmit": false,
"module": "esnext",
"moduleResolution": "Bundler",
"resolveJsonModule": true,
"isolatedModules": true,
"incremental": true,
"esModuleInterop": true,
"allowSyntheticDefaultImports": true,
"types": ["@webgpu/types"],
"baseUrl": "s2", // This must be specified if "paths" is.
"paths": {
"*" : ["./*"],
"geometry/*": ["./geometry/*"],
"gl/*": ["./gl/*"],
"gpu/*": ["./gpu/*"],
"plugins/*": ["./plugins/*"],
"source/*": ["./source/*"],
"style/*": ["./style/*"],
"ui/*": ["./ui/*"],
"util/*": ["./util/*"],
"workers/*": ["./workers/*"],
"s2-pmtiles/browser": ["./node_modules/s2-pmtiles/dist/browser.d.ts"]
}
},
"ts-node": {
"esm": true,
"experimentalSpecifierResolution": "node"
},
"include": [
"types/*.d.ts",
"s2/**/*.ts"
]
}