From 19e9dd9a3f0ddff78030ec01f503c4a4a1087faf Mon Sep 17 00:00:00 2001 From: Kaustabh Ganguly Date: Wed, 26 Mar 2025 22:19:45 +0530 Subject: [PATCH] Initial commit with project setup --- tsconfig.json | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 tsconfig.json diff --git a/tsconfig.json b/tsconfig.json new file mode 100644 index 0000000..ccaad49 --- /dev/null +++ b/tsconfig.json @@ -0,0 +1,14 @@ +{ + "compilerOptions": { + "target": "es2022", + "module": "NodeNext", + "moduleResolution": "NodeNext", + "esModuleInterop": true, + "strict": true, + "outDir": "dist", + "declaration": true, + "sourceMap": true, + "skipLibCheck": true + }, + "include": ["src/**/*"] +} \ No newline at end of file