使用vant,没有ts提示
时间: 2023-07-28 16:48:27 浏览: 186
在微信小程序中使用vant的方法
5星 · 资源好评率100%
如果您在使用vant时没有typescript的提示,可能需要配置一下tsconfig.json文件。请确保您已经安装了相关的依赖:
```
npm i typescript @types/react @types/react-dom @types/react-native
```
然后,在tsconfig.json文件中添加以下内容:
```
{
"compilerOptions": {
"strict": true,
"baseUrl": ".",
"paths": {
"@/*": ["src/*"]
}
},
"include": ["src/**/*.ts", "src/**/*.tsx", "typings/*.d.ts"],
"exclude": ["node_modules", "dist"]
}
```
其中,"baseUrl"和"paths"用于配置别名,"include"用于指定要编译的文件路径,"exclude"用于指定不需要编译的文件路径。请根据您的项目结构进行相应的配置。
阅读全文