tsconfig.json 257 B

123456789
  1. {
  2. "extends": "@evals/typescript-config/nextjs.json",
  3. "compilerOptions": {
  4. "plugins": [{ "name": "next" }],
  5. "paths": { "@/*": ["./src/*"] }
  6. },
  7. "include": ["next-env.d.ts", "**/*.ts", "**/*.tsx", ".next/types/**/*.ts"],
  8. "exclude": ["node_modules"]
  9. }