From ea267c7aa350d67a8fe217cd3ef91daeab79d519 Mon Sep 17 00:00:00 2001 From: Ivan Goncharov Date: Mon, 24 May 2021 00:46:08 +0300 Subject: [PATCH] Restrict TS to files inside `src` (#3126) --- tsconfig.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tsconfig.json b/tsconfig.json index b53dda5d67..6db5760f10 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -1,5 +1,5 @@ { - "exclude": ["integrationTests/ts/**/*"], + "include": ["src/**/*"], "compilerOptions": { "module": "commonjs", "lib": ["es2019", "es2020.promise", "es2020.bigint", "es2020.string"],