From 308aabc7ec63a3f477c08ddcf5bac9a3f2523c13 Mon Sep 17 00:00:00 2001 From: Vladimir Sheremet Date: Mon, 19 Feb 2024 16:32:46 +0100 Subject: [PATCH] chore: fix lint --- tsconfig.json | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tsconfig.json b/tsconfig.json index 06a54f07..f161b0bb 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -4,12 +4,12 @@ "lib": ["ES2020", "ESNext.Disposable"], "rootDir": "src", "module": "commonJS", + "types": ["node"], "strict": true, "outDir": "out", "sourceMap": true, "esModuleInterop": true, - "skipLibCheck": true, - "types": ["node"] + "skipLibCheck": true }, "include": ["src/**/*.ts"], "exclude": ["samples/**/*"]