tsconfig.json 347 B

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