remove .js extension from imports
This commit is contained in:
parent
39eecac6c7
commit
bd4c5308bf
1 changed files with 5 additions and 5 deletions
|
@ -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}`);
|
||||
|
|
Loading…
Reference in a new issue