forked from cubing/cubing.js
-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
tsconfig.json
70 lines (70 loc) · 1.61 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
{
"compilerOptions": {
"target": "es2022",
"module": "es2022",
"moduleResolution": "bundler",
"declaration": true,
"noEmit": true,
"verbatimModuleSyntax": true,
"rootDir": "./",
"types": [
"web-bluetooth",
"dom-speech-recognition",
"./src/test/vendor/bun-types-workaround.d.ts"
],
// Stricter defaults.
"allowJs": true,
"alwaysStrict": true,
"noImplicitAny": true,
"noImplicitReturns": true,
"noImplicitOverride": true,
"noUnusedLocals": true,
"strictNullChecks": true,
"paths": {
// Workaround for the `bin` build: https://github.com/cubing/cubing.js/issues/292
"cubing/*": [
"./src/cubing/*"
]
}
},
"include": [
"script",
"src"
],
"exclude": [
"script/test/dist" // Avoid indexing `dist`.
],
"typedocOptions": {
"out": "dist/sites/js.cubing.net/cubing/api",
"categorizeByGroup": false,
"categoryOrder": [
// alg
"Alg",
"Alg Nodes",
// bluetooth
"Smart Puzzles",
"Keyboard Puzzles",
"Timers",
"Robots",
// puzzle-geometry
"PuzzleGeometry",
// twisty
"TwistyPlayer",
"Other Custom Elements",
// puzzles
"All Puzzles",
"Specific Puzzles",
// Other
"*"
],
"customCss": "./src/docs/js.cubing.net/typedoc-theme.css",
"name": "cubing.js — API Reference",
"titleLink": "/cubing/api/",
"readme": "./src/cubing/typedoc-readme.md",
"includeVersion": true,
"hideGenerator": true,
"navigationLinks": {
"Go to main documentation 🔗": "/cubing/"
}
}
}