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.

35 lines
548 B

3 years ago
  1. {
  2. "compilerOptions": {
  3. "baseUrl": ".",
  4. "paths": {
  5. "src/*": [
  6. "src/*"
  7. ],
  8. "app/*": [
  9. "*"
  10. ],
  11. "components/*": [
  12. "src/components/*"
  13. ],
  14. "layouts/*": [
  15. "src/layouts/*"
  16. ],
  17. "pages/*": [
  18. "src/pages/*"
  19. ],
  20. "assets/*": [
  21. "src/assets/*"
  22. ],
  23. "boot/*": [
  24. "src/boot/*"
  25. ],
  26. "vue$": [
  27. "node_modules/vue/dist/vue.esm.js"
  28. ]
  29. }
  30. },
  31. "exclude": [
  32. "dist",
  33. ".quasar",
  34. "node_modules"
  35. ]
  36. }