tsconfig.json 625 B

1234567891011121314151617181920212223242526272829303132333435363738
  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. "@nuxtjs/i18n",
  29. "nuxt-leaflet",
  30. "@types/node"
  31. ]
  32. },
  33. "exclude": [
  34. "node_modules",
  35. ".nuxt",
  36. "dist"
  37. ]
  38. }