Closed arpu closed 4 months ago
This looks like a typescript compiler error not related to this plugin (or TypeDoc for that matter).
Setting skipErrorChecking
to true "might" help - https://typedoc.org/options/other/#skiperrorchecking.
Hey @tgreyuk Thank You this fixed it!
What package is the bug related to?
typedoc-plugin-markdown
Describe the issue
Hi not sure why this crash, any idea how can debug this?
TypeDoc configuration
{ "compilerOptions": { "target": "es2019", "module": "es2020", "lib": ["es2020", "DOM", "DOM.Iterable"], "allowJs": true, "checkJs": false, "declaration": true, "emitDeclarationOnly": true, "strictNullChecks": true, "strictBindCallApply": true, "skipLibCheck": true, "esModuleInterop": true, "allowSyntheticDefaultImports": true, "forceConsistentCasingInFileNames": true, "moduleResolution": "node", "resolveJsonModule": true, "isolatedModules": true, "noEmit": false, "jsx": "react-jsx", "jsxImportSource": "preact", // "jsxFragmentFactory": "preact.Fragment", "strict": true, "baseUrl": "./", "paths": { "WelcomeComponent/": ["src/instances/vrland.io/WelcomeComponent/"], "Lobby": ["src/instances/vrland.io/Pages/Lobby/"], "react": ["./node_modules/preact/compat/"], "react-dom": ["./node_modules/preact/compat/"], "react-dom/": ["./node_modules/preact/compat/*"], "src": ["./src/"] } }, "exclude": ["*/.spec.ts", "node_modules", "public", "build"] } ➜
Expected behavior
No response