Próbuję uruchomić npm startna moim projekcie angular2
ale ten błąd:
push_quick git:(master) npm start
> angular2-quickstart@1.0.0 start /Users/eladb/WorkspaceQa/SupporTool/src/main/webapp/html/push_quick
> tsc && concurrently tsc -w lite-server
app/shared/stringUtils.service.ts(8,9): error TS7005: Variable 'a' implicitly has an 'any[]' type.
npm ERR! Darwin 15.6.0
npm ERR! argv /usr/local/Cellar/node/6.3.1/bin/node /usr/local/bin/npm start
npm ERR! node v6.3.1
npm ERR! npm v3.10.3
npm ERR! code ELIFECYCLE
npm ERR! angular2-quickstart@1.0.0 start: `tsc && concurrently tsc -w lite-server `
npm ERR! Exit status 2
npm ERR!
dla tej metody:
@Injectable()
export class StringUtilsService {
mapToFormParamsString( dict : any) : string{
var a:any[] = []
for (var key in dict) {
if (dict.hasOwnProperty(key)) {
a.push(key+=+dict[key]);
}
}
return a.join(&);
}
}
Jak mogę rozwiązać ten problem?
zmianę var a = string[] lubvar a = any[]
nie pomogło. sam błąd kompilacji.
btw, nie mam thi błąd podczas kompilacji z ng startlub w IntelliJ
Jest ng startwywołanie mpn startlub odwrotnie?













