* Switches to Typescript 2.0 and removes typings You should remove typings folder to remove typing errors. Closes #64
24 lines
476 B
JSON
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"
|
|
]
|
|
} |