From b623dc14c10d4e1cf7cab7b915fe39e692a4473d Mon Sep 17 00:00:00 2001 From: kodemaster-admin Date: Tue, 25 Nov 2025 20:04:49 +0000 Subject: [PATCH] Add tsconfig.json --- tsconfig.json | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 tsconfig.json diff --git a/tsconfig.json b/tsconfig.json new file mode 100644 index 0000000..adf4b81 --- /dev/null +++ b/tsconfig.json @@ -0,0 +1,15 @@ +{ + "compilerOptions": { + "target": "ES2020", + "module": "commonjs", + "lib": ["ES2020"], + "rootDir": "./src", + "outDir": "./dist", + "strict": true, + "esModuleInterop": true, + "skipLibCheck": true, + "resolveJsonModule": true + }, + "include": ["src/**/*"], + "exclude": ["node_modules", "dist"] +}