@storm-software/workspace-tools 1.17.1 → 1.18.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.
@@ -70671,6 +70671,7 @@ function modernConfig({
70671
70671
  tsdocMetadata,
70672
70672
  sourcemap: debug,
70673
70673
  clean: false,
70674
+ tsconfigDecoratorMetadata: true,
70674
70675
  plugins,
70675
70676
  outExtension
70676
70677
  };
@@ -70726,6 +70727,7 @@ function legacyConfig({
70726
70727
  tsdocMetadata: false,
70727
70728
  sourcemap: debug,
70728
70729
  clean: false,
70730
+ tsconfigDecoratorMetadata: true,
70729
70731
  plugins,
70730
70732
  outExtension
70731
70733
  };
@@ -70783,6 +70785,7 @@ function workerConfig({
70783
70785
  tsdocMetadata,
70784
70786
  sourcemap: debug,
70785
70787
  clean: false,
70788
+ tsconfigDecoratorMetadata: true,
70786
70789
  plugins,
70787
70790
  outExtension
70788
70791
  };
@@ -1,5 +1,6 @@
1
1
  {
2
2
  "$schema": "http://json-schema.org/schema",
3
+ "$id": "tsup",
3
4
  "version": 2,
4
5
  "title": "Tsup Builder",
5
6
  "description": "Run a build on the project using ESBuild with a patched tsup configuration",
@@ -0,0 +1,8 @@
1
+ import { TsupExecutorSchema } from "../tsup/schema";
2
+
3
+ export type TsupNeutralExecutorSchema = Omit<
4
+ TsupExecutorSchema,
5
+ "env" | "platform"
6
+ > & {
7
+ transports?: string[];
8
+ };
@@ -0,0 +1,19 @@
1
+ {
2
+ "$schema": "http://json-schema.org/schema",
3
+ "extends": "../tsup/schema.json",
4
+ "version": 2,
5
+ "title": "Neutral TypeScript Builder",
6
+ "description": "Runs a neutral platform TypeScript build",
7
+ "type": "object",
8
+ "properties": {
9
+ "transports": {
10
+ "type": "array",
11
+ "description": "",
12
+ "items": {
13
+ "type": "string"
14
+ },
15
+ "default": ["pino-pretty"]
16
+ }
17
+ },
18
+ "required": []
19
+ }
@@ -0,0 +1,6 @@
1
+ import { TsupNeutralExecutorSchema } from "../tsup-neutral/schema";
2
+
3
+ export type TsupNodeExecutorSchema = Omit<
4
+ TsupNeutralExecutorSchema,
5
+ "platform"
6
+ >;
@@ -0,0 +1,10 @@
1
+ {
2
+ "$schema": "http://json-schema.org/schema",
3
+ "extends": "../tsup-neutral/schema.json",
4
+ "version": 2,
5
+ "title": "Node TypeScript Builder",
6
+ "description": "Runs a node platform TypeScript build",
7
+ "type": "object",
8
+ "properties": {},
9
+ "required": []
10
+ }