-
Notifications
You must be signed in to change notification settings - Fork 0
/
jsconfig.json
56 lines (55 loc) · 1.33 KB
/
jsconfig.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
49
50
51
52
53
54
55
56
{
"compilerOptions": {
"sourceMap": true,
"module": "commonjs",
"target": "ESNext",
"allowJs": true,
"checkJs": false,
"baseUrl": "./",
"paths": {
"SPLINT": [
"js/modules/ThreeJS/CORE.js"
],
"splint": [
"js/modules/build/ThreeJS_loader.js"
],
"@THREE": [
"node_modules/three/build/three.module.js"
],
"three": [
"node_modules/three/build/three.module.js"
],
"@THREE_SRC/*": [
"node_modules/three/src/*"
],
"@THREE_ADDONS/*": [
"node_modules/three/examples/jsm/*"
],
"threeJS": [
"lib/threeJS/build/three.module.js"
],
"@THREE_ROOT_DIR/*": [
"lib/threeJS/*"
],
"@THREE_MODULES_DIR/*": [
"lib/threeJS/examples/jsm/*"
],
"@SPLINT_MODULES_DIR/*": [
"js/modules/*"
],
"@SPLINT_THREE_DIR/*": [
"js/modules/ThreeJS/*"
],
"@NODE_MODULES_DIR/*": [
"./node_modules/*"
]
}
},
"include": ["js/**/*", "C:/xampp/htdocs/Splint/node_modules/chart.js/dist/chart.cjs", "../node_modules/@paypal/paypal-js/dist/**/*", "lib/imageTracerJS/**/*", "C:/xampp/htdocs/Splint/lib/dependencies/**/*"],
"typeAcquisition": {
"enable": true,
"include": [
"jquery"
]
}
}