We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0ec7fe4 commit 1c8edd4Copy full SHA for 1c8edd4
docs/typedoc.js
@@ -0,0 +1,12 @@
1
+module.exports = {
2
+ out: './docs/build/html',
3
+ exclude: [
4
+ '**/node_modules/**',
5
+ 'test-types.ts'
6
+ ],
7
+ name: "LaunchDarkly Javascript SDK Core Components (3.4.0)",
8
+ readme: 'none', // don't add a home page with a copy of README.md
9
+ mode: 'file', // don't treat "index.d.ts" itself as a parent module
10
+ includeDeclarations: true, // allows it to process a .d.ts file instead of actual TS code
11
+ entryPoint: '"launchdarkly-js-sdk-common"' // note extra quotes - workaround for a TypeDoc bug
12
+};
0 commit comments