tsconfig.json 776 B

123456789101112131415161718192021222324252627282930313233343536
  1. {
  2. "compilerOptions": {
  3. "target": "ESNext",
  4. "lib": ["dom", "dom.iterable", "esnext"],
  5. "allowJs": true,
  6. "skipLibCheck": true,
  7. "strict": true,
  8. "forceConsistentCasingInFileNames": true,
  9. "noEmit": true,
  10. "allowImportingTsExtensions": true,
  11. "esModuleInterop": true,
  12. "module": "esnext",
  13. "moduleResolution": "bundler",
  14. "resolveJsonModule": true,
  15. "isolatedModules": true,
  16. "jsx": "react-jsx",
  17. "incremental": true,
  18. "paths": {
  19. "@/*": ["./*"],
  20. "collections/*": ["./.source/*"]
  21. },
  22. "plugins": [
  23. {
  24. "name": "next"
  25. }
  26. ]
  27. },
  28. "include": [
  29. "next-env.d.ts",
  30. "**/*.ts",
  31. "**/*.tsx",
  32. ".next/types/**/*.ts",
  33. ".next/dev/types/**/*.ts"
  34. ],
  35. "exclude": ["node_modules"]
  36. }