chore(monorepo): scaffold npm workspaces and tooling

This commit is contained in:
lakshit verma 2026-08-17 01:31:48 +05:30
commit 99458eb562
No known key found for this signature in database
8 changed files with 9397 additions and 0 deletions

17
tsconfig.base.json Normal file
View file

@ -0,0 +1,17 @@
{
"compilerOptions": {
"target": "ES2022",
"module": "NodeNext",
"moduleResolution": "NodeNext",
"lib": ["ES2022"],
"strict": true,
"esModuleInterop": true,
"skipLibCheck": true,
"forceConsistentCasingInFileNames": true,
"resolveJsonModule": true,
"declaration": true,
"sourceMap": true,
"noUncheckedIndexedAccess": true,
"noFallthroughCasesInSwitch": true
}
}