tsconfig.json 737 B

123456789101112131415161718192021222324252627282930313233343536373839404142
  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. "allowSyntheticDefaultImports": true,
  13. "allowJs": true,
  14. "sourceMap": true,
  15. "strict": true,
  16. "noEmit": true,
  17. "experimentalDecorators": true,
  18. "baseUrl": ".",
  19. "paths": {
  20. "~/*": [
  21. "./*"
  22. ],
  23. "@/*": [
  24. "./*"
  25. ]
  26. },
  27. "types": [
  28. "@nuxt/types",
  29. "@types/jest",
  30. "@nuxtjs/i18n",
  31. "nuxt-leaflet",
  32. "@nuxtjs/axios",
  33. "@types/node",
  34. "@nuxtjs/date-fns"
  35. ]
  36. },
  37. "exclude": [
  38. "node_modules",
  39. ".nuxt",
  40. "dist"
  41. ]
  42. }