-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathtsconfig.json
53 lines (53 loc) · 1.1 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
{
"compilerOptions": {
"target": "ES6",
"moduleResolution": "Node",
"allowSyntheticDefaultImports": true,
"lib": [
"es5",
"es6",
"es2020",
"dom",
"dom.iterable"
],
"strictNullChecks": true,
},
// OPTIONS FOR DOCUMENTATION
"typedocOptions": {
"includeVersion": true,
"entryPoints": [
"src/core",
"src/ui",
"src/config",
"src/model",
"src/index.ts",
],
"out": "docs",
"hideGenerator": true,
"name": "Grapholscape",
"favicon": "media/img/icon.png",
"intentionallyNotExported": [
"Constructor",
"DisplayedNamesManager",
"ThemeManager",
"EntityNavigator",
],
"exclude": "./src/model/rdf-graph/swagger/apis/*",
"excludeInternal": true,
"excludeExternals": true,
"pluginPages": {
"source": "tutorials",
"pages": [
{
"title": "Getting Started",
"source": "getting-started.md",
},
{
"title": "Configuration",
"source": "configuration.md"
},
],
},
"media": "media",
}
}