From 2468adf4416ef17d9fa4c14b61565a856489c8c9 Mon Sep 17 00:00:00 2001 From: memodack <81513409+memodack@users.noreply.github.com> Date: Sun, 4 May 2025 15:58:17 +0300 Subject: [PATCH] chore: update tsconfig.json file --- tsconfig.json | 24 ++++++++++-------------- 1 file changed, 10 insertions(+), 14 deletions(-) diff --git a/tsconfig.json b/tsconfig.json index 49af306..68ac108 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -1,21 +1,17 @@ { "compilerOptions": { - "alwaysStrict": true, + "target": "ES2022", + "module": "ESNext", + "lib": ["DOM", "ESNext"], + "outDir": "dist", + "strict": true, + "strictNullChecks": true, "esModuleInterop": true, "forceConsistentCasingInFileNames": true, - "lib": ["DOM", "ESNext"], - "module": "ESNext", - "moduleResolution": "node", - "noImplicitAny": true, - "noImplicitThis": true, - "outDir": "./dist", "skipLibCheck": true, - "strict": true, - "strictFunctionTypes": true, - "strictNullChecks": true, - "strictPropertyInitialization": true, - "target": "ES2015" + "isolatedModules": true, + "moduleResolution": "node", + "noEmit": false }, - "exclude": ["node_modules", "dist"], - "include": ["src/**/*.ts"] + "exclude": ["node_modules", "dist"] }