tsconfig.json 885 B

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849
  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. "@nuxtjs/i18n",
  40. "nuxt-leaflet",
  41. "@nuxt/image"
  42. ]
  43. },
  44. "exclude": [
  45. "node_modules",
  46. ".nuxt",
  47. "dist"
  48. ]
  49. }