File tree Expand file tree Collapse file tree 3 files changed +31
-2
lines changed
Expand file tree Collapse file tree 3 files changed +31
-2
lines changed Original file line number Diff line number Diff line change 1616 "lint" : " eslint **/*.ts" ,
1717 "lint:fix" : " eslint --fix **/*.ts" ,
1818 "format" : " prettier **/*.ts --write" ,
19+ "docs" : " typedoc" ,
1920 "test" : " vitest"
2021 },
2122 "workspaces" : [
3233 "gts" : " ^5.3.1" ,
3334 "prettier" : " ^3.6.2" ,
3435 "prettier-plugin-organize-imports" : " ^4.3.0" ,
36+ "typedoc" : " ^0.28.14" ,
37+ "typedoc-theme-fresh" : " ^0.2.1" ,
3538 "typescript" : " ^5.9.2" ,
3639 "typescript-eslint" : " ^8.46.0" ,
3740 "vitest" : " ^3.2.4"
Original file line number Diff line number Diff line change 66 "lib" : [" ES2022" , " DOM" ],
77 "moduleResolution" : " nodenext" ,
88 "esModuleInterop" : true ,
9- "skipLibCheck" : true
10- }
9+ "skipLibCheck" : true ,
10+ "rootDir" : " ."
11+ },
12+ "exclude" : [
13+ " node_modules" ,
14+ " dist" ,
15+ " coverage" ,
16+ " **/*_test.ts" ,
17+ " **/test" ,
18+ " core/test" ,
19+ " dev/test"
20+ ]
1121}
Original file line number Diff line number Diff line change 1+ {
2+ "$schema" : " https://typedoc.org/schema.json" ,
3+ "entryPoints" : [" ./core/src/index.ts" ],
4+ "exclude" : [" **/*_test.ts" , " **/test" ],
5+ "out" : " api-reference/typescript/" ,
6+ "name" : " ADK for TypeScript: API Reference" ,
7+ "readme" : " none" ,
8+ "excludePrivate" : true ,
9+ "tsconfig" : " ./tsconfig.json" ,
10+ "plugin" : [
11+ " typedoc-theme-fresh" ,
12+ " typedoc-github-theme"
13+ ],
14+ "theme" : " fresh" ,
15+ "excludeExternals" : true
16+ }
You can’t perform that action at this time.
0 commit comments