From f54f7c39854f982f70143ad3e17132fc2d6ba3dc Mon Sep 17 00:00:00 2001 From: Vasil Chimev Date: Fri, 2 Nov 2018 10:52:55 +0200 Subject: [PATCH] Revert "chore(apps): add tslib dep and update tsconfig.json file (#6464)" This reverts commit eca938d9defb3dd32af6e96829a19a6a4ba8df0b. --- apps/package.json | 3 +-- apps/tsconfig.json | 41 ++++++++++++++++++----------------------- 2 files changed, 19 insertions(+), 25 deletions(-) diff --git a/apps/package.json b/apps/package.json index 5d2c10461..70c68f984 100644 --- a/apps/package.json +++ b/apps/package.json @@ -13,8 +13,7 @@ } }, "dependencies": { - "tns-core-modules": "*", - "tslib": "^1.9.3" + "tns-core-modules": "*" }, "devDependencies": { "babel-traverse": "6.10.4", diff --git a/apps/tsconfig.json b/apps/tsconfig.json index ac7907a6f..4f5d9b3d1 100644 --- a/apps/tsconfig.json +++ b/apps/tsconfig.json @@ -1,28 +1,23 @@ { - "compilerOptions": { - "module": "commonjs", - "target": "es5", - "experimentalDecorators": true, - "emitDecoratorMetadata": true, - "noEmitHelpers": true, - "noEmitOnError": true, - "lib": [ - "es6", - "dom" - ], - "baseUrl": ".", - "paths": { - "~/*": [ - "app/*" - ], - "*": [ - "./node_modules/tns-core-modules/*", - "./node_modules/*" - ] - } - }, + "extends": "../tsconfig.shared", "exclude": [ "node_modules", "platforms" - ] + ], + "compilerOptions": { + "baseUrl": ".", + "paths": { + "*": [ + "./node_modules/tns-core-modules/*", + "./node_modules/*" + ], + "~/*": [ + "app/*" + ] + }, + "lib": [ + "es6", + "dom" + ] + } } \ No newline at end of file