forked from TypeStrong/ts-node
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsidebars.js
50 lines (50 loc) · 1.07 KB
/
sidebars.js
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
module.exports = {
primarySidebar: [
{
type: 'category',
label: 'General',
collapsed: false,
items: [
'overview',
'installation',
'usage',
'configuration',
'options',
'swc',
'commonjs-vs-native-ecmascript-modules',
'troubleshooting',
'performance',
],
},
{
type: 'category',
label: 'Advanced',
collapsed: false,
items: ['how-it-works', 'scope', 'paths', 'compilers', 'transpilers', 'module-type-overrides', 'api'],
},
{
type: 'category',
label: 'Recipes',
collapsed: false,
items: [
'recipes/watching-and-restarting',
// 'recipes/npx-and-yarn-dlx',
'recipes/ava',
'recipes/gulp',
'recipes/intellij',
'recipes/mocha',
'recipes/tape',
'recipes/visual-studio-code',
'recipes/other',
],
},
],
hiddenSidebar: [
{
type: 'category',
label: 'Hidden pages',
collapsed: false,
items: ['options-table'],
},
],
};