chore: configure typescript project references and shared compiler options

This commit is contained in:
lila 2026-03-20 14:01:48 +01:00
parent 66848f282f
commit 3dfb75ea83
9 changed files with 84 additions and 1 deletions

12
apps/api/tsconfig.json Normal file
View file

@ -0,0 +1,12 @@
{
"extends": "../../tsconfig.base.json",
"references": [
{ "path": "../../packages/shared" },
{ "path": "../../packages/db" },
],
"compilerOptions": {
"module": "NodeNext",
"moduleResolution": "NodeNext",
},
"include": ["src"],
}