@herberttn/bytenode-webpack-plugin
Version:
Compile JavaScript into bytecode using bytenode
13 lines • 1.04 kB
TypeScript
import type { FileMatcher, FileMatcherIntent } from './types';
declare function createFileMatcher(includes?: FileMatcherIntent[], excludes?: FileMatcherIntent[]): FileMatcher;
declare function fromCompiledToTargetExtension(file: string): string;
declare function fromTargetToCompiledExtension(file: string): string;
declare function isCompiledExtension(file: string): boolean;
declare function isTargetExtension(file: string): boolean;
declare function normalizeCodePath(path: string): string;
declare function normalizeCodePathForUnix(path: string): string;
declare function normalizeCodePathForWindows(path: string): string;
declare function toLoaderFileName(file: string): string;
declare function toSiblingRelativeFileLocation(file: string): string;
export { createFileMatcher, fromCompiledToTargetExtension, fromTargetToCompiledExtension, isCompiledExtension, isTargetExtension, normalizeCodePath, normalizeCodePathForUnix, normalizeCodePathForWindows, toLoaderFileName, toSiblingRelativeFileLocation, };
//# sourceMappingURL=utils.d.ts.map