jsconfig.json 338B

1234567891011121314
  1. {
  2. "compilerOptions": {
  3. "baseUrl": ".",
  4. "paths": {
  5. "@/*": ["./src/*"]
  6. },
  7. // // 解决prettier对于装饰器语法的警告
  8. // "experimentalDecorators": true,
  9. // // 解决.jsx文件无法快速跳转的问题
  10. // "jsx": "preserve"
  11. },
  12. //提高 性能
  13. "exclude": ["node_modules", "dist", "build"]
  14. }