jsconfig.json 342 B

1234567891011121314151617
  1. {
  2. "compilerOptions": {
  3. "target": "ES6",
  4. "module": "commonjs",
  5. "allowSyntheticDefaultImports": true,
  6. "baseUrl": "./",
  7. "paths": {
  8. // 路径匹配
  9. "@/*": ["src/*"]
  10. }
  11. },
  12. "exclude": [
  13. // 排除某些文件
  14. "node_modules"
  15. ],
  16. "include": ["./src/**/*"] //自动引入Vue组件和普通Js模块
  17. }