Skip to content

Commit 9d6296c

Browse files
committed
Optimize the Components type
The way we used `ElementType` caused a significant increase of resource usage for TypeScript. I can’t really explain it, but this fixes it. I’m personally inclined to say people should avoid using the `JSX` namespace, but I see no other way around it. Without this change, autocompletion in my editor takes a noticable time to load. Now it’s instant. On my machine this halves the time of running `tsc -b` from ~15s to ~7s. Closes #883
1 parent 21b47b9 commit 9d6296c

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

lib/index.js

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
/**
22
* @import {Element, Nodes, Parents, Root} from 'hast'
33
* @import {Root as MdastRoot} from 'mdast'
4-
* @import {ComponentProps, ElementType, ReactElement} from 'react'
4+
* @import {ComponentType, JSX, ReactElement} from 'react'
55
* @import {Options as RemarkRehypeOptions} from 'remark-rehype'
66
* @import {BuildVisitor} from 'unist-util-visit'
77
* @import {PluggableList, Processor} from 'unified'
@@ -29,7 +29,7 @@
2929

3030
/**
3131
* @typedef {{
32-
* [Key in Extract<ElementType, string>]?: ElementType<ComponentProps<Key> & ExtraProps>
32+
* [Key in keyof JSX.IntrinsicElements]?: ComponentType<JSX.IntrinsicElements[Key] & ExtraProps> | keyof JSX.IntrinsicElements
3333
* }} Components
3434
* Map tag names to components.
3535
*/

0 commit comments

Comments
 (0)