tsconfig.json 367 B

123456789101112131415161718192021222324
  1. {
  2. "extends": "@repo/typescript-config/nextjs.json",
  3. "compilerOptions": {
  4. "plugins": [
  5. {
  6. "name": "next"
  7. }
  8. ],
  9. "baseUrl": ".",
  10. "paths": {
  11. "@/*": ["./*"]
  12. }
  13. },
  14. "include": [
  15. "**/*.ts",
  16. "**/*.tsx",
  17. "next-env.d.ts",
  18. "next.config.js",
  19. ".next/types/**/*.ts"
  20. ],
  21. "exclude": [
  22. "node_modules"
  23. ]
  24. }