@ckeditor/ckeditor5-dev-utils
Version:
Utils for CKEditor 5 development tools packages.
18 lines (17 loc) • 381 B
TypeScript
type TypeScriptLoaderOptions = {
configFile?: string;
debugFlags?: Array<string>;
includeDebugLoader?: boolean;
};
type TypeScriptLoader = {
test: RegExp;
use: Array<LoaderToUse>;
};
type LoaderToUse = {
loader: string;
options: {
target: string;
tsconfig: string;
};
};
export default function getTypeScriptLoader(options?: TypeScriptLoaderOptions): TypeScriptLoader;