Updated imports to have extensions

This commit is contained in:
Alexander Cerutti
2025-01-11 14:41:15 +01:00
parent 2bbea853e7
commit d20129da99
12 changed files with 43 additions and 43 deletions

View File

@@ -1,14 +1,14 @@
import { Stream } from "node:stream";
import { Buffer } from "node:buffer";
import path from "node:path";
import FieldsArray from "./FieldsArray";
import Bundle, { filesSymbol } from "./Bundle";
import getModelFolderContents from "./getModelFolderContents";
import * as Schemas from "./schemas";
import * as Signature from "./Signature";
import * as Strings from "./StringsUtils";
import * as Utils from "./utils";
import * as Messages from "./messages";
import FieldsArray from "./FieldsArray.js";
import Bundle, { filesSymbol } from "./Bundle.js";
import getModelFolderContents from "./getModelFolderContents.js";
import * as Schemas from "./schemas/index.js";
import * as Signature from "./Signature.js";
import * as Strings from "./StringsUtils.js";
import * as Utils from "./utils.js";
import * as Messages from "./messages.js";
const propsSymbol = Symbol("props");
const localizationSymbol = Symbol("pass.l10n");