On Webstorm for mac
Preferences->Languages&Frameworks->Typescript
Use tsconfig.json should be checked
and you should create a tsconfig.json file which contains
{
"compilerOptions": {
"module": "commonjs",
"target": "es5",
"sourceMap": true
},
"exclude": [
"node_modules"
]
}