forked from mistic100/Photo-Sphere-Viewer
-
Notifications
You must be signed in to change notification settings - Fork 0
/
tsconfig.json
57 lines (57 loc) · 1.63 KB
/
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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
{
"$schema": "https://json.schemastore.org/tsconfig",
"compilerOptions": {
"target": "es2021",
"composite": false,
"declaration": true,
"declarationMap": false,
"stripInternal": true,
"esModuleInterop": true,
"forceConsistentCasingInFileNames": true,
"isolatedModules": true,
"resolveJsonModule": true,
"moduleResolution": "node",
"noImplicitOverride": true,
"noUnusedLocals": true,
"noUnusedParameters": true,
"preserveWatchOutput": true,
"skipLibCheck": true,
"strict": true,
"strictNullChecks": false,
"lib": ["es2021", "dom"]
},
"typedocOptions": {
"name": "Photo Sphere Viewer",
"includeVersion": false,
"githubPages": false,
"cleanOutputDir": false,
"excludePrivate": true,
"entryPointStrategy": "packages",
"readme": "none",
"gaID": "UA-28192323-3",
"entryPoints": ["packages/*"],
"validation": {
"notExported": false
},
"navigationLinks": {
"📃 Main documentation": "https://photo-sphere-viewer.js.org"
},
"visibilityFilters": {
"protected": true,
"inherited": false
},
"favicon": "docs/.vuepress/public/favicon.png",
"customCss": "docs/.typedoc/style.css",
"footerLastModified": true,
"externalSymbolLinkMappings": {
"typescript": {
"Error": "https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Error",
"Event": "https://developer.mozilla.org/docs/Web/API/Event",
"EventTarget": "https://developer.mozilla.org/docs/Web/API/EventTarget"
},
"@types/three": {
"*": "https://threejs.org/docs"
}
}
}
}