I have an app.js file which has dojo amd pattern code as follows:
require(["dojo/dom", ..], function(dom){
dom.byId('someId').innerHTML = "test";
});
And using tsd, I have installed dojo.d.ts
And also created jsconfig.json file:
{
"compilerOptions": {
"target": "ES6",
"module": "commonjs"
}
}
But the intellisense is not working. Am I doing anything wrong?