@oazmi/build-tools
Version:
general deno build tool scripts which I practically use in all of my typescript repos
13 lines • 699 B
TypeScript
/** this submodule only contains the exported type definitions provided by the cli scripts for formatting the optional config file.
* see {@link CliConfigJson} for details.
*
* @module
*/
import "../_dnt.polyfills.js";
import type { CliConfigJson as DistCliConfigJson } from "./dist.js";
import type { CliConfigJson as DocsCliConfigJson } from "./docs.js";
import type { CliConfigJson as NpmCliConfigJson } from "./npm.js";
/** the combined json schema definition for this package's configurable cli json configuration files, provided with the `--config` witch. */
export interface CliConfigJson extends DistCliConfigJson, DocsCliConfigJson, NpmCliConfigJson {
}
//# sourceMappingURL=mod.d.ts.map