jsconfig.json
{ "compilerOptions": { "baseUrl": ".", "paths": { // 解决我的项目中应用@作为门路别名,导致vscode无奈跳转文件的问题 "@/*": ["src/*"] }, // 解决prettier对于装璜器语法的正告 "experimentalDecorators": true, // 解决.jsx文件无奈疾速跳转的问题 "jsx": "preserve" }, "exclude": ["node_modules", "dist", "build"]}
tsconfig.json
占位