tsconfig.json 669 B

12345678910111213141516171819202122232425262728293031323334353637383940
  1. {
  2. "compilerOptions": {
  3. "target": "ES2018",
  4. "module": "ESNext",
  5. "moduleResolution": "Node",
  6. "lib": [
  7. "ESNext",
  8. "ESNext.AsyncIterable",
  9. "DOM"
  10. ],
  11. "esModuleInterop": true,
  12. "allowJs": true,
  13. "sourceMap": true,
  14. "strict": true,
  15. "noEmit": true,
  16. "experimentalDecorators": true,
  17. "baseUrl": ".",
  18. "paths": {
  19. "~/*": [
  20. "./*"
  21. ],
  22. "@/*": [
  23. "./*"
  24. ]
  25. },
  26. "types": [
  27. "@nuxt/types",
  28. "@types/jest",
  29. "@nuxtjs/i18n",
  30. "nuxt-leaflet",
  31. "@nuxtjs/axios",
  32. "@types/node"
  33. ]
  34. },
  35. "exclude": [
  36. "node_modules",
  37. ".nuxt",
  38. "dist"
  39. ]
  40. }