Skip to content

Commit

Permalink
Inline typedoc configuration
Browse files Browse the repository at this point in the history
- In anticipation of TypeStrong/typedoc#1891
  • Loading branch information
schlusslicht committed Mar 22, 2022
1 parent b962e4b commit 03f1543
Show file tree
Hide file tree
Showing 3 changed files with 41 additions and 25 deletions.
7 changes: 7 additions & 0 deletions packages/shell/src/component/jsx-runtime.ts
Expand Up @@ -28,6 +28,13 @@ declare global {

}

/**
* @see https://github.com/google/incremental-dom/pull/467
*/
interface Node {
readonly namespaceURI: string | null;
}

}

/**
Expand Down
35 changes: 34 additions & 1 deletion tsconfig.json
Expand Up @@ -43,5 +43,38 @@

"include": [
"./packages/**/*.ts"
]
],

"typedocOptions": {
"name": "@sgrud",
"gitRevision": "main",

"excludeExternals": true,
"treatWarningsAsErrors": true,

"entryPoints": [
"./packages/bin/index.ts",
"./packages/bus/index.ts",
"./packages/core/index.ts",
"./packages/data/index.ts",
"./packages/shell/index.ts",
"./packages/state/index.ts"
],

"sort": [
"static-first",
"visibility",
"alphabetical"
],

"tsconfig": {
"noUnusedLocals": false,
"noUnusedParameters": false
},

"validation": {
"invalidLink": true,
"notExported": true
}
}
}
24 changes: 0 additions & 24 deletions typedoc.json

This file was deleted.

0 comments on commit 03f1543

Please sign in to comment.