feat(package): updated to typescript 2

This commit is contained in:
Dmitriy Schekhovtsov
2016-09-21 23:10:17 +03:00
parent c1b3b5dc19
commit 4fef496698
4 changed files with 40 additions and 25 deletions

View File

@@ -8,13 +8,25 @@
"sourceMap": false,
"noEmitHelpers": false,
"noImplicitAny": true,
"declaration": true
"declaration": true,
"skipLibCheck": true,
"stripInternal": true,
"lib": [
"dom",
"es6"
],
"types": [
"jasmine",
"node",
"webpack"
]
},
"exclude": [
"node_modules"
"node_modules",
"bundles",
"dist"
],
"files": [
"./typings/index.d.ts",
"./demo/custom-typings.d.ts",
"./ng2-file-upload.ts"
]