From 2c5f90ab09a33dee6ed9689b2fae42f7a3051253 Mon Sep 17 00:00:00 2001 From: Jaid Date: Sat, 8 Aug 2020 06:14:19 +0200 Subject: [PATCH] Fixed tsconfig for Automatic Type Acquisition in VSCode --- tsconfig.json | 5 ++++- tsconfigBase.json | 3 --- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/tsconfig.json b/tsconfig.json index 5625016..ce37256 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -2,6 +2,9 @@ "extends": "./tsconfigBase.json", "include": [ "src/**/*.js", - "src/**/*.ts", + "src/**/*.ts" ], + "typeAcquisition": { + "enable": true + } } \ No newline at end of file diff --git a/tsconfigBase.json b/tsconfigBase.json index d490bea..7bfe9c3 100644 --- a/tsconfigBase.json +++ b/tsconfigBase.json @@ -20,8 +20,5 @@ "./*" ] } - }, - "typeAcquisition": { - "enable": true } } \ No newline at end of file