@storm-software/workspace-tools
Version:
Tools for managing a Storm workspace, including various Nx generators and executors for common development tasks.
23 lines (21 loc) • 526 B
JavaScript
// src/base/base-executor.untyped.ts
import { defineUntypedSchema } from "untyped";
var base_executor_untyped_default = defineUntypedSchema({
$schema: {
id: "baseExecutor",
title: "Base Executor",
description: "A base type definition for an executor schema"
},
outputPath: {
$schema: {
title: "Output Path",
type: "string",
format: "path",
description: "The output path for the build"
},
$default: "dist/{projectRoot}"
}
});
export {
base_executor_untyped_default
};