数字化园区前端项目
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

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. }