chore: updated tsconfig to ignore test and dist

This commit is contained in:
vsavkin 2015-06-26 15:58:31 -07:00
parent 5a21dc5340
commit 71e0f89594
1 changed files with 7 additions and 2 deletions

View File

@ -10,7 +10,12 @@
"outDir": "dist/js/cjs"
},
"filesGlob": [
"./**/*.ts",
"!./node_modules/**/*.ts"
"./src/**/*.ts",
"./tools/**/*.ts",
"!./node_modules/**",
"!./modules_dart/**",
"!./packages/**",
"!./dist/**",
"!./temp/**"
]
}