Files
appium/typedoc.json
T
Christopher Hiller be7a479b4b feat(typedoc-plugin-appium): create appium typedoc plugin
This is a typedoc plugin based on `typedoc-plugin-markdown`.

It outputs everything that plugin outputs _plus_ it outputs information about commands (API endpoints) as defined in drivers, plugins, and the builtins in `@appium/base-driver`

It's written in TS because that was the easiest way, because a) there was some sort of disagreement between Babel and TS re: exports, and b) everything it's built on is written in TS.
2022-12-02 12:44:31 -08:00

13 lines
561 B
JSON

{
"$schema": "https://typedoc.org/schema.json",
"entryPoints": ["./packages/appium", "./packages/base-driver", "./packages/support", "./packages/types", "./packages/base-plugin", "./packages/fake-driver", "./packages/typedoc-plugin-appium"],
"entryPointStrategy": "packages",
"name": "Appium",
"includeVersion": false,
"tsconfig": "./tsconfig.json",
"out": "typedoc-docs",
"cleanOutputDir": true,
"plugin": ["typedoc-plugin-resolve-crossmodule-references", "typedoc-plugin-markdown", "./packages/typedoc-plugin-appium"],
"theme": "appium"
}