共计 255 个字符,预计需要花费 1 分钟才能阅读完成。
jsconfig.json
{
"compilerOptions": {
"baseUrl": ".",
"paths": {
// 解决我的项目中应用 @作为门路别名,导致 vscode 无奈跳转文件的问题
"@/*": ["src/*"]
},
// 解决 prettier 对于装璜器语法的正告
"experimentalDecorators": true,
// 解决.jsx 文件无奈疾速跳转的问题
"jsx": "preserve"
},
"exclude": ["node_modules", "dist", "build"]
}
tsconfig.json
占位
正文完
发表至: javascript
2021-04-01