数字化园区前端项目
您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

jsconfig.json 300B

123456789101112131415
  1. {
  2. "compilerOptions": {
  3. "target": "ES6",
  4. "module": "commonjs",
  5. "allowSyntheticDefaultImports": true,
  6. "baseUrl": "./",
  7. "paths": {
  8. "@/*": ["src/*"],
  9. "@api/*": ["src/api/*"]
  10. }
  11. },
  12. "exclude": [
  13. "node_modules"
  14. ]
  15. }