diff --git a/src/loaders/js.ts b/src/loaders/js.ts index c3bf89bc..f5de0039 100644 --- a/src/loaders/js.ts +++ b/src/loaders/js.ts @@ -12,7 +12,6 @@ const TS_EXTS = new Set([".ts", ".mts", ".cts"]); export const jsLoader: Loader = async (input, { options }) => { if (!KNOWN_EXT_RE.test(input.path) || DECLARATION_RE.test(input.path)) { - console.log("Ignoring file with known extension:", input.path); return; }