From dbf008f787faef360d2b8a92914130d1d77c6625 Mon Sep 17 00:00:00 2001 From: toir-bot Date: Mon, 13 Apr 2026 11:52:52 +0000 Subject: [PATCH] chore: initial project scaffold: backend/tsconfig.json --- backend/tsconfig.json | 26 ++++++++++++++++++++++++++ 1 file changed, 26 insertions(+) create mode 100644 backend/tsconfig.json diff --git a/backend/tsconfig.json b/backend/tsconfig.json new file mode 100644 index 0000000..b3fb759 --- /dev/null +++ b/backend/tsconfig.json @@ -0,0 +1,26 @@ +{ + "compilerOptions": { + "module": "ESNext", + "moduleResolution": "bundler", + "target": "ES2023", + "declaration": true, + "removeComments": true, + "emitDecoratorMetadata": true, + "experimentalDecorators": true, + "allowSyntheticDefaultImports": true, + "esModuleInterop": true, + "sourceMap": true, + "outDir": "./dist", + "rootDir": "./src", + "baseUrl": "./", + "incremental": true, + "skipLibCheck": true, + "strictNullChecks": true, + "noImplicitAny": true, + "strictBindCallApply": true, + "forceConsistentCasingInFileNames": true, + "noFallthroughCasesInSwitch": true + }, + "include": ["src/**/*"], + "exclude": ["node_modules", "dist"] +}