-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathjsconfig.json
More file actions
23 lines (22 loc) · 823 Bytes
/
jsconfig.json
File metadata and controls
23 lines (22 loc) · 823 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
{
"compilerOptions": {
"target": "ES6",
"baseUrl": "./",
"paths": {
"points": ["./src/points.js"],
"points/animation": ["./src/core/animation.js"],
"points/audio": ["./src/core/audio.js"],
"points/color": ["./src/core/color.js"],
"points/debug": ["./src/core/debug.js"],
"points/effects": ["./src/core/effects.js"],
"points/image": ["./src/core/image.js"],
"points/math": ["./src/core/math.js"],
"points/noise2d": ["./src/core/noise2d.js"],
"points/classicnoise2d": ["./src/core/classicnoise2d.js"],
"points/classicnoise3d": ["./src/core/classicnoise3d.js"],
"points/random": ["./src/core/random.js"],
"points/renderpasses": ["./src/RenderPasses.js"],
"points/sdf": ["./src/core/sdf.js"],
}
}
}