chore: bootstrap monorepo with shared package

This commit is contained in:
2026-05-20 20:31:02 +02:00
parent 011291cf39
commit 4d0a5aee66
6 changed files with 438 additions and 0 deletions

16
tsconfig.base.json Normal file
View File

@@ -0,0 +1,16 @@
{
"compilerOptions": {
"target": "ES2022",
"module": "ESNext",
"moduleResolution": "Bundler",
"strict": true,
"esModuleInterop": true,
"skipLibCheck": true,
"forceConsistentCasingInFileNames": true,
"resolveJsonModule": true,
"isolatedModules": true,
"noUncheckedIndexedAccess": true,
"noImplicitOverride": true,
"verbatimModuleSyntax": false
}
}