From ab38a7326d23b40652a71b922d9b72bcc8c9dcff Mon Sep 17 00:00:00 2001 From: Tim Lancina Date: Tue, 1 Dec 2015 10:33:47 -0600 Subject: [PATCH] update tsconfig --- tsconfig.json | 19 +++++++------------ 1 file changed, 7 insertions(+), 12 deletions(-) diff --git a/tsconfig.json b/tsconfig.json index 05eae2f076..fe7cb5783b 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -1,23 +1,18 @@ { - "version": "1.5.0", "compilerOptions": { "emitDecoratorMetadata": true, "experimentalDecorators": true, - "target": "es6", - "module": "system", - "declaration": true + "target": "es5", + "module": "commonjs", + "declaration": true, + "outDir": "dist" }, - "fileGlobs": [ - "./ionic/**/*.ts", - "!./node_modules/**", - "!./scripts/**", - "!./dist/**", - "!./tmp/**" + "files": [ + "ionic/ionic.ts" ], "compileOnSave" : false, "buildOnSave": false, "exclude": [ - "node_modules", - "ionic" + "node_modules" ] }