(Installed Location)\Syncfusion\Essential Studio\14.3.0.49\JavaScript\assets-src\angular2\ |
(203,13): error TS2304: Cannot find name 'ej'.ERROR in ./app/ej/core.ts
(243,14): error TS2304: Cannot find name '$'.ERROR in ./app/ej/core.ts
l
npm run typings install |
npm install -g typings or
npm install typings -g |
{
. . . . .
"devDependencies": {
. . .
"@types/ej.web.all": "^14.3.2",
"@types/jquery": "^2.0.34",
"@types/es6-shim": "^0.31.32"
}
} |
"@types/ej.web.all": "^14.3.2",
"types": [ "node", "ej.web.all", "jquery" ]
But then we get follow error:
508,4): error TS2339: Property 'template' does not exist on type 'typeof ej'.
Where is the error ??
Version 14.4.0.15
{ . . . . . "devDependencies": { . . . "@types/ej.web.all": "^0.0.1", "@types/jquery": "^2.0.34", "@types/es6-shim": "^0.31.32" } } |
npm install -g typings (or) npm install typings -g |
{ . . . . . . "devDependencies": { . . . . . . . ., "@types/node": "^6.0.45", "@types/ej.web.all": "^0.0.1", "@types/jquery": "^2.0.34", "@types/es6-shim": "^0.31.32" } } |