From bd4c5308bf7f6115ab0c7bd18ed1f71252ae98be Mon Sep 17 00:00:00 2001 From: Johannes Loher Date: Wed, 23 Dec 2020 17:05:12 +0100 Subject: [PATCH] remove .js extension from imports --- src/module/ds4.ts | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/src/module/ds4.ts b/src/module/ds4.ts index 08068aff..c6f483b7 100644 --- a/src/module/ds4.ts +++ b/src/module/ds4.ts @@ -1,9 +1,9 @@ // Import Modules -import { DS4Actor } from "./actor/actor.js"; -import { DS4ActorSheet } from "./actor/actor-sheet.js"; -import { DS4Item } from "./item/item.js"; -import { DS4ItemSheet } from "./item/item-sheet.js"; -import { DS4 } from "./config.js"; +import { DS4Actor } from "./actor/actor"; +import { DS4ActorSheet } from "./actor/actor-sheet"; +import { DS4Item } from "./item/item"; +import { DS4ItemSheet } from "./item/item-sheet"; +import { DS4 } from "./config"; Hooks.once("init", async function () { console.log(`DS4 | Initializing the DS4 Game System\n${DS4.ASCII}`);