-
Notifications
You must be signed in to change notification settings - Fork 58
Expand file tree
/
Copy pathtsconfig.jsonc
More file actions
56 lines (56 loc) · 1.44 KB
/
tsconfig.jsonc
File metadata and controls
56 lines (56 loc) · 1.44 KB
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
{
"schema": "https://json.schemastore.org/tsconfig",
"extends": "./node_modules/@cubing/dev-config/ts/es2022-types/tsconfig.json",
"compilerOptions": {
"module": "preserve",
"lib": ["es2022", "DOM", "DOM.Iterable"],
"noEmit": true,
"rootDir": "./",
"types": ["web-bluetooth", "dom-speech-recognition"],
"resolveJsonModule": true
},
"include": ["script", "src"],
"exclude": [
"./.temp/",
"./dist/",
// Avoid indexing `dist`.
"./script/test/dist/lib/cubing/build-size/src/total.js",
"./script/test/dist/lib/cubing/node/",
"./script/test/dist/lib/cubing/perf/",
"./src/bin/",
"./vendor/"
],
"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/"
}
}
}