From 2334d132b650afd334005dc9184de16de5cf4860 Mon Sep 17 00:00:00 2001 From: Jaid Date: Thu, 30 Apr 2020 04:48:30 +0200 Subject: [PATCH] Added `tsconfig.json` extending `tsconfigBase.json` --- tsconfig.json | 31 +++---------------------------- 1 file changed, 3 insertions(+), 28 deletions(-) diff --git a/tsconfig.json b/tsconfig.json index 9e87032..5625016 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -1,32 +1,7 @@ { - "compilerOptions": { - "allowJs": true, - "checkJs": true, - "esModuleInterop": true, - "baseUrl": ".", - "outDir": "dist/typescript", - "declaration": true, - "emitDeclarationOnly": true, - "paths": { - "lib/*": [ - "src/lib/*" - ], - "src/*": [ - "src/*" - ], - "root/*": [ - "./*" - ] - } - }, + "extends": "./tsconfigBase.json", "include": [ - "src/**/*.js" + "src/**/*.js", + "src/**/*.ts", ], - "exclude": [ - "node_modules", - "dist" - ], - "typeAcquisition": { - "enable": true - } } \ No newline at end of file