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 4183f07 commit 76ab221Copy full SHA for 76ab221
src/lib/utils/options/readers/typedoc.ts
@@ -64,6 +64,8 @@ export class TypedocReader extends OptionsComponent {
64
* @return the typedoc.(js|json) file path or undefined
65
*/
66
findTypedocFile(path: string): string | undefined {
67
+ path = Path.resolve(path);
68
+
69
if (FS.existsSync(path) && FS.statSync(path).isFile()) {
70
return path;
71
}
0 commit comments