tsconfig.json 861 B

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