jsconfig.json 241 B

12345678910111213
  1. {
  2. "compilerOptions": {
  3. "baseUrl": ".",
  4. "paths": {
  5. "~/*": ["./*"],
  6. "@/*": ["./*"],
  7. "~~/*": ["./*"],
  8. "@@/*": ["./*"],
  9. "/img": ["./static/img"]
  10. }
  11. },
  12. "exclude": ["node_modules", ".nuxt", "dist"]
  13. }