reactjs NPM在添加use-places-autocomplete后构建react/nextjs项目时抛出预期的Type

e5nszbig  于 2023-06-29  发布在  React
关注(0)|答案(1)|浏览(87)

我在构建react/nextjs项目时遇到了这个错误。我已经尝试以管理员身份打开vs代码,但仍然面临这个问题。

./node_modules/use-places-autocomplete/dist/index.d.ts:21:24
Type error: Type expected.

  19 |   export type Suggestion = google.maps.places.AutocompletePrediction;
  20 | 
> 21 |   export type Status = `${google.maps.places.PlacesServiceStatus}` | "";
     |                        ^

Windows 10机器
Node版本14.17.5 Package.json react 17.0.2 typescript ^3.7.2
将ts升级到4.1.0会出现此错误-> E/launcher - Error: TSError: ⨯ Unable to compile TypeScript

i7uq4tfw

i7uq4tfw1#

问题与TS版本有关。我升级到了4.3.2,它工作了!

相关问题