-
-
Notifications
You must be signed in to change notification settings - Fork 6
/
tsconfig.json
76 lines (76 loc) · 1.45 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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
{
"compilerOptions": {
"outDir": "build",
"target": "ES2020",
"lib": ["ESNext"],
"module": "ES2022",
"moduleResolution": "Node",
"esModuleInterop": true,
"declaration": false,
"allowJs": false,
"allowImportingTsExtensions": false,
"allowSyntheticDefaultImports": true,
"verbatimModuleSyntax": true,
"skipLibCheck": true,
"forceConsistentCasingInFileNames": true,
"listFiles": true,
"paths": {
"~/*": ["./src/*"]
}
},
"typedocOptions": {
"plugin": [
"typedoc-material-theme",
"typedoc-plugin-mdn-links",
"typedoc-plugin-include-example"
],
"entryPoints": ["src/index.ts"],
"out": "public/docs/dev",
"githubPages": true,
"validation": {
"notDocumented": true
},
"readme": "none",
"name": "nbs.js",
"includeVersion": true,
"themeColor": "#c6a0f6",
"navigation": {
"includeCategories": true
},
"categoryOrder": [
"Highlights",
"Song",
"Instrument",
"Layer",
"Note",
"Array Buffer",
"*"
],
"searchCategoryBoosts": {
"Highlights": 5,
"Song": 4,
"Instrument": 3,
"Layer": 3,
"Note": 3,
"Array Buffer": 2
},
"groupOrder": [
"Classes",
"Properties",
"Methods",
"Functions",
"Variables",
"*"
],
"searchGroupBoosts": {
"Classes": 1.4,
"Properties": 1.3,
"Methods": 1.2,
"Functions": 1.2,
"Variables": 1.1
},
"sort": ["static-first", "visibility", "kind", "alphabetical"],
"hideGenerator": true
},
"include": ["src/**/**.ts"]
}