From 5b104936ae55dc1b5b5ca687a912e703dd50dfa4 Mon Sep 17 00:00:00 2001 From: Alex Eagle Date: Fri, 24 Apr 2015 16:20:40 -0700 Subject: [PATCH] chore(build): Add a tsconfig.json file, simply to allow Atom editor's Typescript plugin to work without dropping tsconfig.json files and generated .js files in the source directory. Closes #1538 --- tsconfig.json | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 tsconfig.json diff --git a/tsconfig.json b/tsconfig.json new file mode 100644 index 0000000000..eecb13438e --- /dev/null +++ b/tsconfig.json @@ -0,0 +1,16 @@ +{ + "version": "1.5.0", + "compilerOptions": { + "target": "es5", + "module": "commonjs", + "declaration": false, + "noImplicitAny": false, + "removeComments": true, + "noLib": false, + "outDir": "dist/js/cjs" + }, + "filesGlob": [ + "./**/*.ts", + "!./node_modules/**/*.ts" + ], +}