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 f006032 commit 86bc30fCopy full SHA for 86bc30f
packages/docs/typedoc-markdown.mjs
@@ -3,7 +3,8 @@ import fs from 'node:fs/promises'
3
import path from 'node:path'
4
import { Application, TSConfigReader, PageEvent } from 'typedoc'
5
6
-const __dirname = path.dirname(new URL(import.meta.url).pathname)
+import { fileURLToPath } from 'node:url'
7
+const __dirname = path.dirname(fileURLToPath(import.meta.url))
8
9
/** @satisfies {Partial<import('typedoc').TypeDocOptions & import('typedoc-plugin-markdown').PluginOptions>} */
10
const DEFAULT_OPTIONS = {
0 commit comments