tsconfig.json 835 B

12345678910111213141516171819202122232425262728293031
  1. {
  2. "compilerOptions": {
  3. "target": "ES2017",
  4. "lib": ["dom", "dom.iterable", "esnext"],
  5. "allowJs": true,
  6. "skipLibCheck": true,
  7. "strict": true,
  8. "noEmit": true,
  9. "esModuleInterop": true,
  10. "module": "esnext",
  11. "moduleResolution": "bundler",
  12. "resolveJsonModule": true,
  13. "isolatedModules": true,
  14. "jsx": "preserve",
  15. "incremental": true,
  16. "baseUrl": ".",
  17. "paths": {
  18. "@/*": ["./src/*"],
  19. "@/workoutcool/*": ["./src/*"],
  20. "@emails/*": ["emails/*"],
  21. "@public/*": ["public/*"]
  22. },
  23. "plugins": [
  24. {
  25. "name": "next"
  26. }
  27. ]
  28. },
  29. "exclude": ["node_modules", "src/utils/inapp.js", "src/utils/externalLinkOpener.js", "src/utils/browserEscape.js"],
  30. "include": ["next-env.d.ts", "**/*.ts", "**/*.tsx", ".next/types/**/*.ts", "tailwind.config.ts"]
  31. }