tsconfig.json 749 B

123456789101112131415161718192021222324252627282930313233343536373839404142
  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. "include": [
  33. "next-env.d.ts",
  34. "**/*.ts",
  35. "**/*.tsx",
  36. ".next/types/**/*.ts",
  37. "app/components/develop/Prose.jsx"
  38. ],
  39. "exclude": [
  40. "node_modules"
  41. ]
  42. }