RN问题记录-“import type“ 声明只能在 TypeScript 文件中使用

在VSCode中打开js文件遇到此问题

解决方法:

  1. 快捷键Ctrl+Shift+P
  2. 输入setting.json
  3. 选择 首选项:打开设置(json)

RN问题记录-“import type“ 声明只能在 TypeScript 文件中使用_第1张图片

  1. 在setting.json中输入"javascript.validate.enable":false
{
    //“import ... =“ 只能在typescript 文件中使用(解决方法)
    "javascript.validate.enable":false
}

你可能感兴趣的:(移动端,typescript,javascript,前端,react,native)