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
This commit is contained in:
Alex Eagle 2015-04-24 16:20:40 -07:00 committed by Misko Hevery
parent 14988d4415
commit 5b104936ae
1 changed files with 16 additions and 0 deletions

16
tsconfig.json Normal file
View File

@ -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"
],
}