赞
踩
github上找到的vue3-admin项目,下载后启动发现vscode总报错
需要配置tsconfig.json
tsconfig.json配置
- {
- "extends": "./tsconfig.base.json",
- "compilerOptions": {
- "paths": {
- // "@/*": ["src/*"],
- "@/*": ["src/*"],
- "~/*": ["typings/*"]
- },
- "typeRoots":[
- "./typings"]
- },
- "include": ["src", "typings"],
- // "include": ["src/**/*.ts", "src/**/*.d.ts", "src/**/*.tsx", "src/**/*.vue","src/**/*.js",],
- "exclude": ["node_modules", "**/dist"]
- }
extends了tsconfig.base.json这个文件,其中有两项
- // 允许编译器编译JS,JSX文件
- "allowJs": true,
- // 允许在JS文件中报错,通常与allowJS一起使用
- "checkJs": true,
这里记得修改成true,否则js中会报错
还有一点也容易忽略,在VSCode中需要设置
1、点击右下角
2、选择
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。