jsconfig.json 257 B

123456789101112131415
  1. {
  2. "compilerOptions": {
  3. "target": "es6",
  4. "baseUrl": ".",
  5. "paths": {
  6. "@/*": ["src/*"]
  7. }
  8. },
  9. "exclude": ["node_modules", "dist"],
  10. "include": ["src/**/*"],
  11. "vueCompilerOptions": {
  12. "extensions": [".vue"],
  13. "target": 2
  14. }
  15. }