web: Add explicit extensions to imports.

Signed-off-by: Anders Kaseorg <anders@zulip.com>
This commit is contained in:
Anders Kaseorg
2024-11-11 18:59:37 -08:00
committed by Tim Abbott
parent 4e8d028c49
commit ec3177c834
507 changed files with 3767 additions and 3766 deletions

View File

@@ -1,10 +1,10 @@
import $ from "jquery";
import * as inbox_util from "./inbox_util";
import type {MessageList} from "./message_list";
import type {MessageListData} from "./message_list_data";
import * as message_list_data_cache from "./message_list_data_cache";
import * as ui_util from "./ui_util";
import * as inbox_util from "./inbox_util.ts";
import type {MessageList} from "./message_list.ts";
import type {MessageListData} from "./message_list_data.ts";
import * as message_list_data_cache from "./message_list_data_cache.ts";
import * as ui_util from "./ui_util.ts";
export let current: MessageList | undefined;
export const rendered_message_lists = new Map<number, MessageList>();