From 73d15edef50e88bc7d6d59b8a9d8acc70024bf83 Mon Sep 17 00:00:00 2001 From: Tobias Bosch Date: Mon, 18 May 2015 11:46:19 -0700 Subject: [PATCH] chore(build): add tsconfig.json to modules/angular2 This allows to use `tsc` directly on Angular2, e.g. ``` ./node_modules/.bin/tsc -w -p modules/angular2/ ``` --- modules/angular2/tsconfig.json | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 modules/angular2/tsconfig.json diff --git a/modules/angular2/tsconfig.json b/modules/angular2/tsconfig.json new file mode 100644 index 0000000000..13249a24e7 --- /dev/null +++ b/modules/angular2/tsconfig.json @@ -0,0 +1,12 @@ +{ + "compilerOptions": { + "emitDecoratorMetadata": true, + "declaration": true, + "module": "commonjs", + "rootDir": ".", + "sourceMap": true, + "sourceRoot": ".", + "target": "ES5", + "outDir": "../../dist/js/cjs" + } +}