You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

36 lines
618 B

  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. "strictPropertyInitialization": false,
  18. "baseUrl": ".",
  19. "paths": {
  20. "~/*": [
  21. "./*"
  22. ],
  23. "@/*": [
  24. "./*"
  25. ]
  26. },
  27. "types": [
  28. "@types/node",
  29. "@nuxt/types",
  30. "nuxt-i18n"
  31. ]
  32. },
  33. "exclude": [
  34. "node_modules"
  35. ]
  36. }