tsconfig.json 280 B

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