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