From 907d6c6a1791562a08c0ce83dc26bf3d26c64a06 Mon Sep 17 00:00:00 2001 From: Your Name Date: Tue, 29 Apr 2025 13:18:13 -0400 Subject: [PATCH] Add tsconfig.json for TypeScript compilation --- tsconfig.json | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 tsconfig.json diff --git a/tsconfig.json b/tsconfig.json new file mode 100644 index 0000000..e0cb5aa --- /dev/null +++ b/tsconfig.json @@ -0,0 +1,17 @@ +{ + "compilerOptions": { + "target": "es2018", + "module": "commonjs", + "outDir": "./dist", + "rootDir": "./src", + "strict": true, + "esModuleInterop": true, + "skipLibCheck": true, + "forceConsistentCasingInFileNames": true, + "moduleResolution": "node", + "resolveJsonModule": true, + "sourceMap": true + }, + "include": ["src/**/*"], + "exclude": ["node_modules", "dist", "frontend"] +} \ No newline at end of file