tsconfig.json 290 B

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