From 86e0e66c34ebf8b00fff512ec6f3eeb518eea50b Mon Sep 17 00:00:00 2001 From: Aiday Marlen Kyzy Date: Sun, 14 Jun 2026 00:38:41 +0200 Subject: [PATCH] updating tsconfig.json --- tsconfig.json | 15 ++++++++++----- 1 file changed, 10 insertions(+), 5 deletions(-) diff --git a/tsconfig.json b/tsconfig.json index 3f35db2..1315711 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -2,18 +2,23 @@ "compilerOptions": { "inlineSourceMap": true, "inlineSources": true, - "module": "ESNext", + "module": "Node16", "target": "ES2021", "strict": true, "noImplicitReturns": true, "noFallthroughCasesInSwitch": true, "noUncheckedIndexedAccess": true, - "moduleResolution": "node", + "moduleResolution": "node16", "isolatedModules": true, "skipLibCheck": true, "forceConsistentCasingInFileNames": true, "allowSyntheticDefaultImports": true, - "lib": ["ES2021", "DOM"] + "lib": [ + "ES2021", + "DOM" + ] }, - "include": ["src/**/*.ts"] -} + "include": [ + "src/**/*.ts" + ] +} \ No newline at end of file