Error occurs in 5.6.0. It works in 5.5.2.
// From package.json
"typescript": "^4.8.4",
"react-select": "^5.6.0",
// Example.tsx
import Select from 'react-select/creatable';
With moduleResolution "Node16" or "NodeNext".
Cannot find module 'react-select/creatable' or its corresponding type declarations.
Still works with moduleResolution "Node" though, which I guess is most common.
This seems to only affect creatable. import Select from 'react-select' works with Node16 and NodeNext.
Error occurs in
5.6.0. It works in5.5.2.With moduleResolution "Node16" or "NodeNext".
Still works with moduleResolution "Node" though, which I guess is most common.
This seems to only affect creatable.
import Select from 'react-select'works with Node16 and NodeNext.