Update to Typescript 2.0 (#71)

* Switches to Typescript 2.0 and removes typings

You should remove typings folder to remove typing errors.
Closes #64
This commit is contained in:
Nejc Zdovc
2016-08-15 11:04:30 +02:00
committed by József Farkas
parent 7691c88b95
commit 094060d8db
4 changed files with 12 additions and 15 deletions

View File

@@ -8,12 +8,17 @@
"experimentalDecorators": true,
"removeComments": false,
"noImplicitAny": true,
"suppressImplicitAnyIndexErrors": true
"suppressImplicitAnyIndexErrors": true,
"baseUrl": "./src",
"types": [
"node",
"jquery",
"es6-shim",
"select2"
]
},
"exclude": [
"node_modules",
"typings/main",
"typings/main.d.ts",
"config-serializer"
]
}