tsconfig.json 260 B

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