github / github/codeql

No type information for Angular(typescript) codebase

オープン
#4,930 コメント 6 件 リアクション 0 件 担当者 0 名 GitHub で見る
JS question Stale
主要言語
CodeQL
スター
10.1k
フォーク
2.1k
平均マージ
2日 15時間
マージ済み PR(30日)
141

説明

Hi,
I have worked on an angular codebase and created a codeQL database . I was able to get type informations(getType) for that codebase but now when I started querying another angular codebase I am not getting any type information for the whole codebase. Both the angular codebase are similar(developed using the same angular practices). Is there any explanation for why this codebase is not providing type information?

My Code snippet:
```ts
import { HttpClient } from '@angular/common/http';

import { Observable } from 'rxjs';

import * as uuid from 'uuid';

@Injectable({
providedIn: 'root'
})
export class ApiService {

constructor(
private readonly http: HttpClient
) { }

private _getCorrelationId = () => uuid.v4();

public get(url, options?): Observable {
return this.http.get(url, {
withCredentials: true,
headers: {
'Client-Correlation-Id': this._getCorrelationId(),
'Content-type': 'application/json;v=1',
'Accept': 'application/json;v=1'
},
...options
});
}
```

I want all the apiService.get calls being made for which i need the type information. The code snippet is present in both the angular codebases but getting the type information for one codebase but not the second one.

コントリビューションガイド

コントリビューションガイドを開く

評価

この issue はまだ評価されていません。

新しい issue をメールで受け取る

初心者向けの GitHub issue を短くまとめたダイジェスト。