tsconfig.json 251 B

123456789101112
  1. {
  2. "extends": "@briven/config/tsconfig/bun.json",
  3. "compilerOptions": {
  4. "outDir": "dist",
  5. "rootDir": "src",
  6. "paths": {
  7. "@/*": ["./src/*"]
  8. }
  9. },
  10. "include": ["src"],
  11. "exclude": ["node_modules", "dist", "src/**/*.test.ts"]
  12. }