From 88492d69dae094c85c31356f7d70c7ae72150722 Mon Sep 17 00:00:00 2001 From: Adam Bradley Date: Fri, 13 Nov 2015 20:57:35 -0600 Subject: [PATCH] fix(tsconfig): fix json errors, use same as ng2 --- tsconfig.json | 24 ++++++++++++++++-------- 1 file changed, 16 insertions(+), 8 deletions(-) diff --git a/tsconfig.json b/tsconfig.json index 0f72feab04..4686123523 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -1,13 +1,21 @@ { - "version": "1.5.0-beta", + "version": "1.5.0", "compilerOptions": { - "target": "es6", - "module": "system", - "declaration": true, + "emitDecoratorMetadata": true, + "experimentalDecorators": true, + "target": "es5", + "module": "commonjs", + "declaration": false, + "noImplicitAny": false, + "removeComments": true, + "noLib": false, + "outDir": "dist/js/cjs" }, - "filesGlob": [ - "./**/*.ts", - "!node_modules/**/*.ts", - "!node_modules/**/*.tsx" + "fileGlobs": [ + "./ionic/**/*.ts", + "!./node_modules/**", + "!./scripts/**", + "!./dist/**", + "!./tmp/**" ] }