-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathtsconfig.json
More file actions
46 lines (45 loc) · 1.25 KB
/
tsconfig.json
File metadata and controls
46 lines (45 loc) · 1.25 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
{
"compilerOptions": {
"lib": [
"DOM",
"ESNext"
],
"declaration": true,
"emitDeclarationOnly": true,
"allowJs": true,
"checkJs": false, // TODO true to check types
"outDir": "build",
"target": "ES2015",
"module": "ESNext",
"types": [
"@webgpu/types",
]
},
"files": [
"src/types/index.d.ts",
"build/RenderPass.js",
"build/ScaleMode.js",
"build/PresentationFormat.js",
"build/RenderPasses.js",
"build/points.js",
"build/core/animation.js",
"build/core/audio.js",
"build/core/cellular2d.js",
"build/core/classicnoise2d.js",
"build/core/classicnoise3d.js",
"build/core/color.js",
"build/core/debug.js",
"build/core/defaultConstants.js",
"build/core/defaultFunctions.js",
"build/core/defaultStructs.js",
"build/core/defaultVertexStructs.js",
"build/core/effects.js",
"build/core/image.js",
"build/core/math.js",
"build/core/noise2d.js",
"build/core/random.js",
"build/core/sdf.js",
"build/core/valuenoise.js",
"build/core/voronoi.js",
]
}