tsconfig.json10 lines · main
| 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 | } |