Ви не можете вибрати більше 25 тем Теми мають розпочинатися з літери або цифри, можуть містити дефіси (-) і не повинні перевищувати 35 символів.

123456789101112131415161718192021222324252627282930313233343536373839404142434445
  1. {
  2. "compilerOptions": {
  3. "target": "es2015",
  4. "lib": [
  5. "dom",
  6. "dom.iterable",
  7. "esnext"
  8. ],
  9. "allowJs": true,
  10. "skipLibCheck": true,
  11. "strict": true,
  12. "forceConsistentCasingInFileNames": true,
  13. "noEmit": true,
  14. "esModuleInterop": true,
  15. "module": "esnext",
  16. "moduleResolution": "node",
  17. "resolveJsonModule": true,
  18. "isolatedModules": true,
  19. "jsx": "preserve",
  20. "incremental": true,
  21. "plugins": [
  22. {
  23. "name": "next"
  24. }
  25. ],
  26. "paths": {
  27. "@/*": [
  28. "./*"
  29. ],
  30. "~@/*": [
  31. "./*"
  32. ]
  33. }
  34. },
  35. "include": [
  36. "next-env.d.ts",
  37. "**/*.ts",
  38. "**/*.tsx",
  39. ".next/types/**/*.ts",
  40. "app/components/develop/Prose.jsx"
  41. ],
  42. "exclude": [
  43. "node_modules"
  44. ]
  45. }