tsconfig.json 658 B

1234567891011121314151617181920212223242526272829
  1. {
  2. "compilerOptions": {
  3. "target": "es6",
  4. "lib": ["dom", "dom.iterable", "esnext"],
  5. "allowJs": true,
  6. "skipLibCheck": true,
  7. "strict": true,
  8. "forceConsistentCasingInFileNames": true,
  9. "noEmit": true,
  10. "esModuleInterop": true,
  11. "module": "esnext",
  12. "moduleResolution": "node",
  13. "resolveJsonModule": true,
  14. "isolatedModules": true,
  15. "jsx": "preserve",
  16. "incremental": true,
  17. "baseUrl": ".",
  18. "plugins": [
  19. {
  20. "name": "next"
  21. }
  22. ],
  23. "paths": {
  24. "@/*": ["./*"]
  25. }
  26. },
  27. "include": ["next-env.d.ts", "**/*.ts", "**/*.tsx", ".next/types/**/*.ts"],
  28. "exclude": ["node_modules"]
  29. }