From 6b62cf3c3c6307dbdbfd225ea6eee1b87580e43d Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Sat, 16 Mar 2024 00:08:07 +0300 Subject: [PATCH] refactor(tsconfig): add new option (#260) Co-authored-by: Almanov Nikita <131481562+nikkeyl@users.noreply.github.com> --- tsconfig.json | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/tsconfig.json b/tsconfig.json index 57c1d5a..2076db2 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -13,6 +13,7 @@ "noEmit": true, "noErrorTruncation": true, "noFallthroughCasesInSwitch": true, + "noImplicitAny": true, "noImplicitOverride": true, "noImplicitReturns": true, "noPropertyAccessFromIndexSignature": true, @@ -22,7 +23,8 @@ "outDir": "dist", "skipLibCheck": true, "strict": true, - "target": "ES6", + "target": "ESNext", "types": ["chai", "mocha", "node"] - } + }, + "include": ["index.ts"] }