{
"compilerOptions": {
"target": "ES6",
"jsx": "preserve",
"noEmit": true,
"watch": true,
"experimentalDecorators": true
},
"exclude": [
"node_modules"
]
}
this is the current tsconfig I am using with 1.8.2 that is working. but after changing noEmit to false it works. but as you know I don't want to emit anything as I use IDE like webstorm .... that does compilation to correctly understand errors in typescript.