chore: bootstrap monorepo (turbo, biome, docker-compose, env, CHOICES)

This commit is contained in:
Marco Sadjadi
2026-05-19 00:20:15 +02:00
commit fe4800e2c8
11 changed files with 1091 additions and 0 deletions

20
tsconfig.base.json Normal file
View File

@@ -0,0 +1,20 @@
{
"compilerOptions": {
"target": "ES2022",
"lib": ["ES2022", "DOM", "DOM.Iterable"],
"module": "ESNext",
"moduleResolution": "Bundler",
"esModuleInterop": true,
"allowSyntheticDefaultImports": true,
"resolveJsonModule": true,
"isolatedModules": true,
"skipLibCheck": true,
"strict": true,
"noUncheckedIndexedAccess": true,
"noImplicitOverride": true,
"noFallthroughCasesInSwitch": true,
"forceConsistentCasingInFileNames": true,
"verbatimModuleSyntax": false,
"incremental": true
}
}