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

View File

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