og-edopro-server-ts/tsconfig.test.json
Diango Gavidia b8bbc32ab6
chore: migrate from ESLint + Prettier to Biome (#283)
* chore(tooling): replace ESLint + Prettier with Biome

- Add biome.json migrated from the ESLint flat config (preset: none,
  drop-in rules) with tab indentation, lineWidth 100, and the
  evolution-types submodule excluded.
- Enable unsafeParameterDecoratorsEnabled for DI/worker param decorators.
- Switch lint/lint:fix scripts and lint-staged to Biome; drop ESLint
  and Prettier devDependencies and their config files.
- Update .editorconfig to tabs and refresh CONTRIBUTING/testing docs.

No source reformatting in this commit.

* style: reformat codebase with Biome (spaces to tabs)

Mass-apply `biome format --write` across src/ and config files.
Indentation converted from 2 spaces to tabs, lineWidth 100, plus
Biome's default trailing commas. No logic changes — build and the
full test suite (704 tests) pass unchanged.

This is a formatting-only commit; see .git-blame-ignore-revs.

* chore: ignore the Biome reformat commit in git blame
2026-06-19 12:23:08 -04:00

8 lines
152 B
JSON

{
"extends": "./tsconfig.json",
"compilerOptions": {
"types": ["node", "jest"]
},
"include": ["src/**/*"],
"exclude": ["node_modules", "dist"]
}