-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
tsconfig.json
42 lines (42 loc) · 1007 Bytes
/
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
{
// https://nuxt.com/docs/guide/concepts/typescript
"extends": "./.nuxt/tsconfig.json",
"lib": [
"DOM",
"DOM.Iterable",
"ESNext",
"WebWorker"
],
"compilerOptions": {
"esModuleInterop": true,
"moduleResolution": "Bundler",
"types": ["@webgpu/types"],
"baseUrl": ".", // This must be specified if "paths" is.
"paths": {
"*" : ["./*", "./s2/*"],
"geometry/*": ["./s2/geometry/*"],
"gl/*": ["./s2/gl/*"],
"gpu/*": ["./s2/gpu/*"],
"plugins/*": ["./s2/plugins/*"],
"source/*": ["./s2/source/*"],
"style/*": ["./s2/style/*"],
"ui/*": ["./s2/ui/*"],
"util/*": ["./s2/util/*"],
"workers/*": ["./s2/workers/*"],
// "s2-pmtiles/browser": ["./node_modules/s2-pmtiles/dist/browser.d.ts"]
}
},
"exclude": [
"packages",
"node_modules",
"buildS2",
"buildS2-dev",
"buildS2-local",
"buildS2-flat",
"dist",
"dist-types",
"test",
"examples",
".output"
]
}