mirror of
https://github.com/zulip/zulip.git
synced 2025-11-06 15:03:34 +00:00
web: Add explicit extensions to imports.
Signed-off-by: Anders Kaseorg <anders@zulip.com>
This commit is contained in:
committed by
Tim Abbott
parent
4e8d028c49
commit
ec3177c834
@@ -1,97 +1,97 @@
|
||||
import $ from "jquery";
|
||||
import assert from "minimalistic-assert";
|
||||
|
||||
import * as activity_ui from "./activity_ui";
|
||||
import * as alert_words from "./alert_words";
|
||||
import * as alert_words_ui from "./alert_words_ui";
|
||||
import * as attachments_ui from "./attachments_ui";
|
||||
import * as audible_notifications from "./audible_notifications";
|
||||
import * as blueslip from "./blueslip";
|
||||
import * as bot_data from "./bot_data";
|
||||
import * as browser_history from "./browser_history";
|
||||
import {buddy_list} from "./buddy_list";
|
||||
import * as compose_call from "./compose_call";
|
||||
import * as compose_call_ui from "./compose_call_ui";
|
||||
import * as compose_closed_ui from "./compose_closed_ui";
|
||||
import * as compose_pm_pill from "./compose_pm_pill";
|
||||
import * as compose_recipient from "./compose_recipient";
|
||||
import * as compose_state from "./compose_state";
|
||||
import {electron_bridge} from "./electron_bridge";
|
||||
import * as emoji from "./emoji";
|
||||
import * as emoji_picker from "./emoji_picker";
|
||||
import * as gear_menu from "./gear_menu";
|
||||
import * as giphy from "./giphy";
|
||||
import * as information_density from "./information_density";
|
||||
import * as left_sidebar_navigation_area from "./left_sidebar_navigation_area";
|
||||
import * as linkifiers from "./linkifiers";
|
||||
import * as message_edit from "./message_edit";
|
||||
import * as message_events from "./message_events";
|
||||
import * as message_lists from "./message_lists";
|
||||
import * as message_live_update from "./message_live_update";
|
||||
import * as message_view_header from "./message_view_header";
|
||||
import * as muted_users_ui from "./muted_users_ui";
|
||||
import * as narrow_state from "./narrow_state";
|
||||
import * as narrow_title from "./narrow_title";
|
||||
import * as navbar_alerts from "./navbar_alerts";
|
||||
import * as onboarding_steps from "./onboarding_steps";
|
||||
import * as overlays from "./overlays";
|
||||
import * as peer_data from "./peer_data";
|
||||
import * as people from "./people";
|
||||
import * as pm_list from "./pm_list";
|
||||
import * as reactions from "./reactions";
|
||||
import * as realm_icon from "./realm_icon";
|
||||
import * as realm_logo from "./realm_logo";
|
||||
import * as realm_playground from "./realm_playground";
|
||||
import {realm_user_settings_defaults} from "./realm_user_settings_defaults";
|
||||
import * as reload from "./reload";
|
||||
import * as saved_snippets from "./saved_snippets";
|
||||
import * as saved_snippets_ui from "./saved_snippets_ui";
|
||||
import * as scheduled_messages from "./scheduled_messages";
|
||||
import * as scheduled_messages_feed_ui from "./scheduled_messages_feed_ui";
|
||||
import * as scheduled_messages_overlay_ui from "./scheduled_messages_overlay_ui";
|
||||
import * as scheduled_messages_ui from "./scheduled_messages_ui";
|
||||
import * as scroll_bar from "./scroll_bar";
|
||||
import * as settings_account from "./settings_account";
|
||||
import * as settings_bots from "./settings_bots";
|
||||
import * as settings_components from "./settings_components";
|
||||
import * as settings_config from "./settings_config";
|
||||
import * as settings_emoji from "./settings_emoji";
|
||||
import * as settings_exports from "./settings_exports";
|
||||
import * as settings_invites from "./settings_invites";
|
||||
import * as settings_linkifiers from "./settings_linkifiers";
|
||||
import * as settings_notifications from "./settings_notifications";
|
||||
import * as settings_org from "./settings_org";
|
||||
import * as settings_playgrounds from "./settings_playgrounds";
|
||||
import * as settings_preferences from "./settings_preferences";
|
||||
import * as settings_profile_fields from "./settings_profile_fields";
|
||||
import * as settings_realm_domains from "./settings_realm_domains";
|
||||
import * as settings_realm_user_settings_defaults from "./settings_realm_user_settings_defaults";
|
||||
import * as settings_streams from "./settings_streams";
|
||||
import * as settings_users from "./settings_users";
|
||||
import * as sidebar_ui from "./sidebar_ui";
|
||||
import * as starred_messages from "./starred_messages";
|
||||
import * as starred_messages_ui from "./starred_messages_ui";
|
||||
import {current_user, realm} from "./state_data";
|
||||
import * as stream_data from "./stream_data";
|
||||
import * as stream_events from "./stream_events";
|
||||
import * as stream_list from "./stream_list";
|
||||
import * as stream_list_sort from "./stream_list_sort";
|
||||
import * as stream_settings_ui from "./stream_settings_ui";
|
||||
import * as stream_topic_history from "./stream_topic_history";
|
||||
import * as stream_ui_updates from "./stream_ui_updates";
|
||||
import * as sub_store from "./sub_store";
|
||||
import * as submessage from "./submessage";
|
||||
import * as theme from "./theme";
|
||||
import * as typing_events from "./typing_events";
|
||||
import * as unread_ops from "./unread_ops";
|
||||
import * as unread_ui from "./unread_ui";
|
||||
import * as user_events from "./user_events";
|
||||
import * as user_group_edit from "./user_group_edit";
|
||||
import * as user_groups from "./user_groups";
|
||||
import {user_settings} from "./user_settings";
|
||||
import * as user_status from "./user_status";
|
||||
import * as user_topics from "./user_topics";
|
||||
import * as user_topics_ui from "./user_topics_ui";
|
||||
import * as activity_ui from "./activity_ui.ts";
|
||||
import * as alert_words from "./alert_words.ts";
|
||||
import * as alert_words_ui from "./alert_words_ui.ts";
|
||||
import * as attachments_ui from "./attachments_ui.ts";
|
||||
import * as audible_notifications from "./audible_notifications.ts";
|
||||
import * as blueslip from "./blueslip.ts";
|
||||
import * as bot_data from "./bot_data.ts";
|
||||
import * as browser_history from "./browser_history.ts";
|
||||
import {buddy_list} from "./buddy_list.ts";
|
||||
import * as compose_call from "./compose_call.ts";
|
||||
import * as compose_call_ui from "./compose_call_ui.ts";
|
||||
import * as compose_closed_ui from "./compose_closed_ui.ts";
|
||||
import * as compose_pm_pill from "./compose_pm_pill.ts";
|
||||
import * as compose_recipient from "./compose_recipient.ts";
|
||||
import * as compose_state from "./compose_state.ts";
|
||||
import {electron_bridge} from "./electron_bridge.ts";
|
||||
import * as emoji from "./emoji.ts";
|
||||
import * as emoji_picker from "./emoji_picker.ts";
|
||||
import * as gear_menu from "./gear_menu.js";
|
||||
import * as giphy from "./giphy.js";
|
||||
import * as information_density from "./information_density.ts";
|
||||
import * as left_sidebar_navigation_area from "./left_sidebar_navigation_area.ts";
|
||||
import * as linkifiers from "./linkifiers.ts";
|
||||
import * as message_edit from "./message_edit.ts";
|
||||
import * as message_events from "./message_events.js";
|
||||
import * as message_lists from "./message_lists.ts";
|
||||
import * as message_live_update from "./message_live_update.ts";
|
||||
import * as message_view_header from "./message_view_header.ts";
|
||||
import * as muted_users_ui from "./muted_users_ui.ts";
|
||||
import * as narrow_state from "./narrow_state.ts";
|
||||
import * as narrow_title from "./narrow_title.ts";
|
||||
import * as navbar_alerts from "./navbar_alerts.ts";
|
||||
import * as onboarding_steps from "./onboarding_steps.ts";
|
||||
import * as overlays from "./overlays.ts";
|
||||
import * as peer_data from "./peer_data.ts";
|
||||
import * as people from "./people.ts";
|
||||
import * as pm_list from "./pm_list.ts";
|
||||
import * as reactions from "./reactions.ts";
|
||||
import * as realm_icon from "./realm_icon.ts";
|
||||
import * as realm_logo from "./realm_logo.ts";
|
||||
import * as realm_playground from "./realm_playground.ts";
|
||||
import {realm_user_settings_defaults} from "./realm_user_settings_defaults.ts";
|
||||
import * as reload from "./reload.ts";
|
||||
import * as saved_snippets from "./saved_snippets.ts";
|
||||
import * as saved_snippets_ui from "./saved_snippets_ui.ts";
|
||||
import * as scheduled_messages from "./scheduled_messages.ts";
|
||||
import * as scheduled_messages_feed_ui from "./scheduled_messages_feed_ui.ts";
|
||||
import * as scheduled_messages_overlay_ui from "./scheduled_messages_overlay_ui.ts";
|
||||
import * as scheduled_messages_ui from "./scheduled_messages_ui.ts";
|
||||
import * as scroll_bar from "./scroll_bar.ts";
|
||||
import * as settings_account from "./settings_account.ts";
|
||||
import * as settings_bots from "./settings_bots.ts";
|
||||
import * as settings_components from "./settings_components.ts";
|
||||
import * as settings_config from "./settings_config.ts";
|
||||
import * as settings_emoji from "./settings_emoji.ts";
|
||||
import * as settings_exports from "./settings_exports.ts";
|
||||
import * as settings_invites from "./settings_invites.ts";
|
||||
import * as settings_linkifiers from "./settings_linkifiers.ts";
|
||||
import * as settings_notifications from "./settings_notifications.ts";
|
||||
import * as settings_org from "./settings_org.ts";
|
||||
import * as settings_playgrounds from "./settings_playgrounds.ts";
|
||||
import * as settings_preferences from "./settings_preferences.ts";
|
||||
import * as settings_profile_fields from "./settings_profile_fields.ts";
|
||||
import * as settings_realm_domains from "./settings_realm_domains.ts";
|
||||
import * as settings_realm_user_settings_defaults from "./settings_realm_user_settings_defaults.ts";
|
||||
import * as settings_streams from "./settings_streams.ts";
|
||||
import * as settings_users from "./settings_users.ts";
|
||||
import * as sidebar_ui from "./sidebar_ui.ts";
|
||||
import * as starred_messages from "./starred_messages.ts";
|
||||
import * as starred_messages_ui from "./starred_messages_ui.ts";
|
||||
import {current_user, realm} from "./state_data.ts";
|
||||
import * as stream_data from "./stream_data.ts";
|
||||
import * as stream_events from "./stream_events.js";
|
||||
import * as stream_list from "./stream_list.ts";
|
||||
import * as stream_list_sort from "./stream_list_sort.ts";
|
||||
import * as stream_settings_ui from "./stream_settings_ui.js";
|
||||
import * as stream_topic_history from "./stream_topic_history.ts";
|
||||
import * as stream_ui_updates from "./stream_ui_updates.ts";
|
||||
import * as sub_store from "./sub_store.ts";
|
||||
import * as submessage from "./submessage.ts";
|
||||
import * as theme from "./theme.ts";
|
||||
import * as typing_events from "./typing_events.ts";
|
||||
import * as unread_ops from "./unread_ops.ts";
|
||||
import * as unread_ui from "./unread_ui.ts";
|
||||
import * as user_events from "./user_events.js";
|
||||
import * as user_group_edit from "./user_group_edit.js";
|
||||
import * as user_groups from "./user_groups.ts";
|
||||
import {user_settings} from "./user_settings.ts";
|
||||
import * as user_status from "./user_status.ts";
|
||||
import * as user_topics from "./user_topics.ts";
|
||||
import * as user_topics_ui from "./user_topics_ui.ts";
|
||||
|
||||
export function dispatch_normal_event(event) {
|
||||
const noop = function () {};
|
||||
|
||||
Reference in New Issue
Block a user