@storm-software/workspace-tools 1.36.6 → 1.37.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -41,4 +41,5 @@ export type TsupExecutorSchema = Omit<
41
41
  getConfig:
42
42
  | Record<string, (params: GetConfigParams) => Options>
43
43
  | ((params: GetConfigParams) => Options);
44
+ format?: string[];
44
45
  };
@@ -91,6 +91,14 @@
91
91
  "description": "Should the build process *tree-shake* to remove unused code?",
92
92
  "default": true
93
93
  },
94
+ "format": {
95
+ "type": "array",
96
+ "description": "The output format for the generated JavaScript files. There are currently three possible values that can be configured: iife, cjs, and esm.",
97
+ "default": ["cjs", "esm"],
98
+ "items": {
99
+ "type": "string"
100
+ }
101
+ },
94
102
  "debug": {
95
103
  "type": "boolean",
96
104
  "description": "Should output be unminified with source mappings.",