React 中报Type error: Could not find a declaration file for module ‘qs‘.(已解决)

ts项目引入qs  比如 nextjs 或者reactjs

npm install --save-dev @types/qs

确保你的tsconfig.json文件中有以下设置

{

  "compilerOptions": {

    "types": ["qs"]

  }

}

如果你的项目中没有tsconfig.json文件,你可以创建一个。在项目根目录下创建一个名为tsconfig.json的文件,并将以下内容添加到该文件中:

{

  "compilerOptions": {

    "types": ["qs"]

  }

}