UNPKG

@ckeditor/ckeditor5-dev-utils

Version:
18 lines (17 loc) 381 B
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;