From edfcace3dde5e5a13547d39e40ee527727ecd7c7 Mon Sep 17 00:00:00 2001 From: Torsten Brendgen Date: Thu, 16 Jul 2026 22:51:49 +0200 Subject: [PATCH] Update TypeScript configuration to use ESNext module and include Microsoft type definitions --- tsconfig.json | 12 +++++------- 1 file changed, 5 insertions(+), 7 deletions(-) diff --git a/tsconfig.json b/tsconfig.json index e168023..0c292a8 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -2,14 +2,16 @@ "compilerOptions": { "target": "es5", "forceConsistentCasingInFileNames": true, - "module": "commonjs", + "module": "esnext", + "moduleResolution": "node", "jsx": "react", "declaration": true, "sourceMap": true, "experimentalDecorators": true, "skipLibCheck": true, "typeRoots": [ - "./node_modules/@types" + "./node_modules/@types", + "./node_modules/@microsoft" ], "types": [ "es6-promise", @@ -20,9 +22,5 @@ "dom", "es2015.collection" ] - }, - "include": [ - "src/**/*.ts" - ] + } } -