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