Files
agent/tsconfig.json
Nejc Zdovc 094060d8db 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
2016-08-15 11:04:30 +02:00

24 lines
476 B
JSON

{
"compilerOptions": {
"target": "es5",
"module": "commonjs",
"moduleResolution": "node",
"sourceMap": true,
"emitDecoratorMetadata": true,
"experimentalDecorators": true,
"removeComments": false,
"noImplicitAny": true,
"suppressImplicitAnyIndexErrors": true,
"baseUrl": "./src",
"types": [
"node",
"jquery",
"es6-shim",
"select2"
]
},
"exclude": [
"node_modules",
"config-serializer"
]
}