File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -7,7 +7,7 @@ export const KANBAN_VIEW_TYPE = "github-kanban-view";
77
88export class GitHubKanbanView extends ItemView {
99 private settings : IssueTrackerSettings ;
10- private refreshInterval : NodeJS . Timeout | null = null ;
10+ private refreshInterval : ReturnType < typeof setInterval > | null = null ;
1111 private projectDataCache : Map < string , any [ ] > = new Map ( ) ;
1212 private activeProjectId : string | null = null ;
1313 private loadedProjects : Set < string > = new Set ( ) ; // Track which projects have been loaded
@@ -139,7 +139,7 @@ export class GitHubKanbanView extends ItemView {
139139 // Update tab styles
140140 tabBar
141141 . querySelectorAll ( ".github-kanban-tab" )
142- . forEach ( ( t : HTMLElement ) => {
142+ . forEach ( ( t : Element ) => {
143143 t . removeClass ( "active" ) ;
144144 } ) ;
145145 tab . addClass ( "active" ) ;
Original file line number Diff line number Diff line change 11{
22 "compilerOptions" : {
3- "baseUrl" : " ." ,
43 "inlineSourceMap" : true ,
54 "inlineSources" : true ,
65 "module" : " ESNext" ,
76 "target" : " ES6" ,
87 "allowJs" : true ,
98 "noImplicitAny" : true ,
10- "moduleResolution" : " node " ,
9+ "moduleResolution" : " bundler " ,
1110 "importHelpers" : true ,
1211 "isolatedModules" : true ,
1312 "strictNullChecks" : true ,
You can’t perform that action at this time.
0 commit comments