chore: remove .js from imports

This commit is contained in:
Felix Staud 2024-07-16 16:42:53 -07:00
parent fa02f84448
commit 233f6072d6
2 changed files with 6 additions and 6 deletions

View File

@ -1,8 +1,8 @@
import { Button } from "#app/enums/buttons.js";
import { MessagePhase } from "#app/phases.js";
import { MysteryEncounterOptionSelectedPhase, MysteryEncounterPhase } from "#app/phases/mystery-encounter-phase.js";
import MysteryEncounterUiHandler from "#app/ui/mystery-encounter-ui-handler.js";
import { Mode } from "#app/ui/ui.js";
import { Button } from "#app/enums/buttons";
import { MessagePhase } from "#app/phases";
import { MysteryEncounterOptionSelectedPhase, MysteryEncounterPhase } from "#app/phases/mystery-encounter-phase";
import MysteryEncounterUiHandler from "#app/ui/mystery-encounter-ui-handler";
import { Mode } from "#app/ui/ui";
import GameManager from "../utils/gameManager";
export async function runSelectMysteryEncounterOption(game: GameManager, optionNo: number) {

View File

@ -1,4 +1,4 @@
import { Weather, WeatherType } from "#app/data/weather.js";
import { Weather, WeatherType } from "#app/data/weather";
import { Biome } from "#app/enums/biome";
import * as Overrides from "#app/overrides";
import { vi } from "vitest";