tsconfig.json 777 B

12345678910111213141516171819202122232425262728293031323334353637383940414243
  1. {
  2. "compilerOptions": {
  3. "target": "ESNext",
  4. "lib": [
  5. "DOM",
  6. "DOM.Iterable",
  7. "ESNext"
  8. ],
  9. "jsx": "preserve",
  10. "module": "ESNext",
  11. "moduleResolution": "Bundler",
  12. "baseUrl": ".",
  13. "ignoreDeprecations": "6.0",
  14. "paths": {
  15. "@/*": [
  16. "./src/*"
  17. ]
  18. },
  19. "outDir": "./dist",
  20. "rootDir": ".",
  21. "strict": true,
  22. "esModuleInterop": true,
  23. "skipLibCheck": true,
  24. "forceConsistentCasingInFileNames": true,
  25. "allowJs": true,
  26. "noEmit": true,
  27. "incremental": true,
  28. "resolveJsonModule": true,
  29. "isolatedModules": true,
  30. "plugins": [
  31. {
  32. "name": "next"
  33. }
  34. ]
  35. },
  36. "include": [
  37. "src/**/*",
  38. ".next/types/**/*.ts"
  39. ],
  40. "exclude": [
  41. "node_modules"
  42. ]
  43. }