Files
esengine/typedoc.json
YHH 67e97f89c6 fix(ci): update typedoc path and add workflow_dispatch (#341)
* fix: update Laya examples, add CLI docs, fix changesets workflow

- Update Laya examples to use Laya 3.x Script pattern (@regClass)
- Add CLI tool quick start section to README (npx @esengine/cli init)
- Fix changesets workflow to only build framework packages
- Remove unnecessary Rust/WASM build steps from changesets workflow
- Remove redundant 'pnpm build' from changeset:publish script

* docs: add CLI documentation and update Laya examples

- Add CLI quick start section to getting-started.md (zh/en)
- Update Laya examples to use Laya 3.x Script pattern

* fix(ci): update typedoc path and add workflow_dispatch

- Fix typedoc entry point: packages/core -> packages/framework/core
- Add workflow_dispatch to release-changesets for manual triggering
- Add deeper package paths to trigger on nested packages
2025-12-26 16:52:29 +08:00

63 lines
1.3 KiB
JSON

{
"entryPoints": ["./packages/framework/core/src/index.ts"],
"out": "./docs/api",
"plugin": ["typedoc-plugin-markdown"],
"readme": "none",
"excludePrivate": true,
"excludeProtected": false,
"excludeInternal": false,
"includeVersion": true,
"sort": ["source-order"],
"kindSortOrder": [
"Document",
"Project",
"Module",
"Namespace",
"Enum",
"EnumMember",
"Class",
"Interface",
"TypeAlias",
"Constructor",
"Property",
"Variable",
"Function",
"Accessor",
"Method",
"Parameter",
"TypeParameter",
"TypeLiteral",
"CallSignature",
"ConstructorSignature",
"IndexSignature",
"GetSignature",
"SetSignature"
],
"categorizeByGroup": false,
"defaultCategory": "其他",
"categoryOrder": [
"核心",
"ECS",
"组件",
"系统",
"工具",
"*"
],
"searchInComments": true,
"cleanOutputDir": true,
"titleLink": "/",
"navigationLinks": {
"首页": "/",
"指南": "/guide/",
"示例": "/examples/"
},
"sidebarLinks": {
"GitHub": "https://github.com/esengine/esengine",
"NPM": "https://www.npmjs.com/package/@esengine/ecs-framework"
},
"hideGenerator": true,
"githubPages": false,
"disableSources": false,
"name": "ECS Framework API",
"skipErrorChecking": true
}