ts检查一直过不了,然后一直报错: Cannot find module 'axios' or its corresponding type declarations.ts
加上下面这几行,完美解决:
"skipLibCheck": true,
"typeRoots": ["node_modules/@types"],
"types": ["axios", "node"]
参考来源:
[Cannot find module ‘axios;‘ or its corresponding type declarations.ts(2307)_cannot find module 'axios' or its corresponding ty-CSDN博客](https://blog.csdn.net/qq_22841387/article/details/123433223[)]
https://blog.csdn.net/qq_22841387/article/details/123433223