Skip to content

Commit 041e2bf

Browse files
committed
docs: updated typedoc/parameters config
1 parent bb50c04 commit 041e2bf

File tree

3 files changed

+6
-1
lines changed

3 files changed

+6
-1
lines changed

Diff for: packages/parameters/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@
3030
"license": "MIT-0",
3131
"main": "./lib/index.js",
3232
"types": "./lib/index.d.ts",
33-
"typedocMain": "src/file_that_does_not_exist_so_its_ignored_from_api_docs.ts",
33+
"typedocMain": "src/docs.ts",
3434
"files": [
3535
"lib"
3636
],

Diff for: packages/parameters/src/docs.ts

+4
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
export * from './appconfig';
2+
export * from './ssm';
3+
export * from './secrets';
4+
export * from './dynamodb';

Diff for: typedoc.js

+1
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@ module.exports = {
33
exclude: [ '**/node_modules/**', '**/*.test.ts', '**/*.json' ],
44
name: 'aws-lambda-powertools-typescript',
55
excludePrivate: true,
6+
excludeInternal: true,
67
entryPointStrategy: 'packages',
78
readme: './README.md',
89
};

0 commit comments

Comments
 (0)