From 7cc8e844bc27d981a3fab8ddead7978158f8070f Mon Sep 17 00:00:00 2001 From: toir-bot Date: Wed, 22 Apr 2026 07:38:31 +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..786e393 --- /dev/null +++ b/backend/tsconfig.json @@ -0,0 +1,26 @@ +{ + "compilerOptions": { + "module": "commonjs", + "moduleResolution": "node", + "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": false, + "noImplicitAny": false, + "strictBindCallApply": true, + "forceConsistentCasingInFileNames": true, + "noFallthroughCasesInSwitch": true + }, + "include": ["src/**/*"], + "exclude": ["node_modules", "dist"] +}