File tree 5 files changed +37
-10
lines changed
5 files changed +37
-10
lines changed File renamed without changes.
Original file line number Diff line number Diff line change 2
2
"name" : " @dtinsight/molecule" ,
3
3
"version" : " 0.9.0-beta.4.2" ,
4
4
"description" : " A Web IDE UI Framework built with React.js, inspired by VSCode." ,
5
- "module" : " ./index .d.ts" ,
6
- "typings" : " ./index .d.ts" ,
5
+ "module" : " ./molecule .d.ts" ,
6
+ "typings" : " ./molecule .d.ts" ,
7
7
"scripts" : {},
8
8
"keywords" : [
9
9
" react.js" ,
Original file line number Diff line number Diff line change
1
+ {
2
+ "extends" : " ../../tsconfig.base.json" ,
3
+ "compilerOptions" : {
4
+ "module" : " es6" ,
5
+ "target" : " es6" ,
6
+ "declaration" : true ,
7
+ "preserveConstEnums" : true ,
8
+ "sourceMap" : false ,
9
+ "outDir" : " ./" ,
10
+ "rootDir" : " ./" ,
11
+ "baseUrl" : " ./"
12
+ },
13
+ "include" : [" ./" ]
14
+ }
Original file line number Diff line number Diff line change @@ -33,8 +33,12 @@ const darkCodeTheme = require('prism-react-renderer/themes/dracula');
33
33
'docusaurus-plugin-typedoc' ,
34
34
// Plugin / TypeDoc options
35
35
{
36
- entryPoints : [ '../src/index.ts' ] ,
37
- tsconfig : '../tsconfig.json' ,
36
+ entryPoints : [
37
+ '../packages/molecule/molecule.d.ts' ,
38
+ '../packages/molecule/ui.d.ts' ,
39
+ '../packages/molecule/monaco.d.ts' ,
40
+ ] ,
41
+ tsconfig : '../packages/molecule/tsconfig.json' ,
38
42
name : 'Molecule' ,
39
43
readme : 'none' ,
40
44
excludeExternals : true ,
Original file line number Diff line number Diff line change @@ -50,17 +50,26 @@ module.exports = {
50
50
] ,
51
51
api : [
52
52
'api/index' ,
53
- 'api/namespaces/molecule' ,
53
+ {
54
+ type : 'category' ,
55
+ label : 'Modules' ,
56
+ collapsed : false ,
57
+ items : [
58
+ {
59
+ type : 'autogenerated' ,
60
+ dirName : 'api/modules' ,
61
+ } ,
62
+ ] ,
63
+ } ,
54
64
{
55
65
type : 'category' ,
56
66
label : 'Namespaces' ,
57
67
collapsed : false ,
58
68
items : [
59
- 'api/namespaces/molecule.component' ,
60
- 'api/namespaces/molecule.model' ,
61
- 'api/namespaces/molecule.react' ,
62
- 'api/namespaces/molecule.event' ,
63
- 'api/namespaces/molecule.monaco' ,
69
+ {
70
+ type : 'autogenerated' ,
71
+ dirName : 'api/namespaces' ,
72
+ } ,
64
73
] ,
65
74
} ,
66
75
{
You can’t perform that action at this time.
0 commit comments