forked from webglearth/webglearth2
-
Notifications
You must be signed in to change notification settings - Fork 0
/
app.json
40 lines (32 loc) · 809 Bytes
/
app.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
{
"id": "app",
"inputs": ['src-app/main.js'],
"paths": ['src', 'src-app'],
"externs": [
"Cesium.externs.js"
],
"define": {
// "goog.dom.ASSUME_STANDARDS_MODE": true,
"goog.DEBUG": false,
"weapi.GENERATE_EXPORTS": false
},
"mode": "ADVANCED",
"level": "VERBOSE",
// "pretty-print": true,
// "debug": true,
"checks": {
// Unfortunately, the Closure Library violates these in many places.
// "accessControls": "ERROR",
// "visibility": "ERROR"
"checkTypes": "ERROR",
"checkRegExp": "ERROR",
"checkVars": "ERROR",
"deprecated": "ERROR",
"fileoverviewTags": "ERROR",
"invalidCasts": "ERROR",
"missingProperties": "ERROR",
"nonStandardJsDocs": "OFF",
"undefinedVars": "ERROR"
},
"jsdoc-html-output-path": "."
}