mirror of
https://github.com/gristlabs/grist-core.git
synced 2024-10-27 20:44:07 +00:00
c6d66e15bf
Summary: This annotates the plugin api sufficiently to generate some documentation for it. See https://github.com/gristlabs/grist-help/pull/139 Contains some small code tweaks for things that caused typedoc some trouble. Test Plan: manual inspection of output Reviewers: jarek Reviewed By: jarek Differential Revision: https://phab.getgrist.com/D3342
20 lines
406 B
JSON
20 lines
406 B
JSON
{
|
|
"extends": "./buildtools/tsconfig-base.json",
|
|
"files": [],
|
|
"include": [],
|
|
"references": [
|
|
{ "path": "./app" },
|
|
{ "path": "./stubs/app" },
|
|
{ "path": "./test" },
|
|
],
|
|
"typedocOptions": {
|
|
"entryPoints": [
|
|
"app/plugin/grist-plugin-api.ts",
|
|
"app/plugin/TableOperations.ts",
|
|
],
|
|
"excludeInternal": "true",
|
|
"excludeNotDocumented": "true",
|
|
"out": "doc"
|
|
}
|
|
}
|