From 5ab39dae0b8ed8f598b4c646a51886398ea34454 Mon Sep 17 00:00:00 2001 From: Alajemba Paul <100224975+Alajemba-Paul@users.noreply.github.com> Date: Mon, 31 Aug 2026 23:58:30 +0100 Subject: [PATCH] Modify tsconfig.json for TypeScript settings Updated TypeScript configuration options for target, module, and directories. --- tsconfig.json | 17 ++++++++--------- 1 file changed, 8 insertions(+), 9 deletions(-) diff --git a/tsconfig.json b/tsconfig.json index 71f6182..bc74857 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -1,15 +1,14 @@ { "compilerOptions": { - "target": "es2022", - "module": "commonjs", - "rootDir": ".", - "outDir": "./dist", - "esModuleInterop": true, + "target": "ES2022", + "module": "Node16", + "moduleResolution": "Node16", + "outDir": "dist", + "rootDir": "src", "strict": true, + "esModuleInterop": true, "skipLibCheck": true, - "forceConsistentCasingInFileNames": true, - "resolveJsonModule": true + "declaration": true }, - "include": ["src/**/*", "config/**/*"], - "exclude": ["node_modules", "**/*.test.ts"] + "include": ["src"] }