From b724e87c1d6e6c683ba13305207c10fc6484f697 Mon Sep 17 00:00:00 2001 From: jason Date: Sat, 7 Mar 2026 22:58:37 -0600 Subject: [PATCH] feat: add backend TypeScript config --- backend/tsconfig.json | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 backend/tsconfig.json diff --git a/backend/tsconfig.json b/backend/tsconfig.json new file mode 100644 index 0000000..27558e9 --- /dev/null +++ b/backend/tsconfig.json @@ -0,0 +1,15 @@ +{ + "compilerOptions": { + "target": "ES2020", + "module": "commonjs", + "outDir": "dist", + "rootDir": "src", + "strict": true, + "esModuleInterop": true, + "skipLibCheck": true, + "forceConsistentCasingInFileNames": true, + "resolveJsonModule": true + }, + "include": ["src/**/*"], + "exclude": ["node_modules", "dist"] +} \ No newline at end of file