Skip to content

Commit

Permalink
Fix TypeScript type imports
Browse files Browse the repository at this point in the history
Closes GH-3.
  • Loading branch information
remcohaszing authored Jul 11, 2022
1 parent 66245a8 commit bc1154c
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion index.js
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
* @typedef {import('mdast-util-to-markdown').Options} ToMarkdownExtension
* @typedef {import('mdast-util-to-markdown').Handle} ToMarkdownHandle
* @typedef {import('estree-jsx').Program} Program
* @typedef {import('./complex-types').MdxjsEsm} MdxjsEsm
* @typedef {import('./complex-types.js').MdxjsEsm} MdxjsEsm
*
* @typedef {MdxjsEsm} MDXJSEsm - Deprecated name, prefer `MdxjsEsm`
*/
Expand Down
2 changes: 1 addition & 1 deletion tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
"target": "ES2020",
"lib": ["ES2020"],
"module": "ES2020",
"moduleResolution": "node",
"moduleResolution": "node16",
"allowJs": true,
"checkJs": true,
"declaration": true,
Expand Down

0 comments on commit bc1154c

Please sign in to comment.