{
  "$schema": "http://json-schema.org/schema",
  "version": 2,
  "cli": "nx",
  "title": "Workflow Bundler Executor",
  "description": "Takes a file that default exports a record of workflow functions, and bundles it using the canonical Temporal bundleWorkflowCode helper.",
  "type": "object",
  "properties": {
    "bundlePath": {
      "type": "string",
      "description": "Path for the output workflow bundle"
    },
    "bundleOptions": {
      "type": "object",
      "description": "https://typescript.temporal.io/api/namespaces/worker#bundleworkflowcode"
    },
    "tsConfigPathsPluginOptions": {
      "type": "object",
      "description": "https://github.com/dividab/tsconfig-paths-webpack-plugin#options"
    }
  },
  "required": ["bundlePath", "bundleOptions"],
  "additionalProperties": true
}
