tsconfig.json 645 B

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