I am experiencing issues with getting code hinting to work using the official TypeScript plugin for Sublime Text 3 on Mac OSX 10.10.5 with Sublime 3. Despite installing it in the packages
directory, I am unable to see any code hints.
In accordance with the suggestion, I have placed a tsconfig.json file in the root of the application. Below is the content of the file:
{
"compilerOptions": {
"out": "out.js",
"sourceMap": true,
"target": "es5"
},
"files": [
"main.ts"
],
}
However, I keep encountering the following message and I am unsure about what action needs to be taken. Although I have been consulting the Documentation, the instructions are not very clear.
https://i.sstatic.net/LiyPt.png
Do you have any suggestions or solutions for this issue?