Use types tsconfig option where possible

This commit is contained in:
Matt Bierner
2017-02-07 15:57:22 -08:00
parent 1a024c1b19
commit 38fbba35ff
18 changed files with 44 additions and 24 deletions

View File

@@ -6,9 +6,12 @@
"lib": [
"es2015"
],
"strictNullChecks": true
"strictNullChecks": true,
"types": [
"node"
]
},
"exclude": [
"node_modules"
]
}
}