390b65f796
- added readme in each package - updated typedoc, fixed related issues - use @link instead of @see - moved configs to typedoc.js, improved exclusion of unneeded stuff - custom plugin for typedoc for cross-package references - preparing to move documentation to separate repository
23 lines
510 B
JSON
23 lines
510 B
JSON
{
|
|
"extends": "../../tsconfig.json",
|
|
"compilerOptions": {
|
|
"outDir": "./dist"
|
|
},
|
|
"include": [
|
|
"./src"
|
|
],
|
|
"typedocOptions": {
|
|
"name": "@mtcute/core",
|
|
"includeVersion": true,
|
|
"out": "../../docs/packages/core",
|
|
"validation": {
|
|
"notExported": true,
|
|
"invalidLink": true,
|
|
"notDocumented": false
|
|
},
|
|
"excludePrivate": true,
|
|
"entryPoints": [
|
|
"./src/index.ts"
|
|
]
|
|
}
|
|
}
|