@storm-software/workspace-tools 1.60.14 → 1.60.16
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.
- package/CHANGELOG.md +24 -0
- package/index.js +3 -0
- package/meta.json +1 -1
- package/package.json +1 -1
- package/src/executors/tsup/executor.js +3 -0
- package/src/executors/tsup-browser/executor.js +3 -0
- package/src/executors/tsup-neutral/executor.js +3 -0
- package/src/executors/tsup-node/executor.js +3 -0
- package/src/utils/index.js +3 -0
package/package.json
CHANGED
|
@@ -465167,7 +465167,10 @@ function getNormalizedTsConfig(context, workspaceRoot, outputPath, options8) {
|
|
|
465167
465167
|
outDir: outputPath,
|
|
465168
465168
|
rootDir: workspaceRoot,
|
|
465169
465169
|
baseUrl: workspaceRoot,
|
|
465170
|
+
target: "esnext",
|
|
465171
|
+
module: "esnext",
|
|
465170
465172
|
moduleResolution: "node",
|
|
465173
|
+
lib: ["lib.esnext.d.ts", "lib.dom.d.ts", "lib.dom.iterable.d.ts"],
|
|
465171
465174
|
noEmit: false,
|
|
465172
465175
|
esModuleInterop: true,
|
|
465173
465176
|
downlevelIteration: true,
|
|
@@ -458975,7 +458975,10 @@ function getNormalizedTsConfig(context, workspaceRoot, outputPath, options8) {
|
|
|
458975
458975
|
outDir: outputPath,
|
|
458976
458976
|
rootDir: workspaceRoot,
|
|
458977
458977
|
baseUrl: workspaceRoot,
|
|
458978
|
+
target: "esnext",
|
|
458979
|
+
module: "esnext",
|
|
458978
458980
|
moduleResolution: "node",
|
|
458981
|
+
lib: ["lib.esnext.d.ts", "lib.dom.d.ts", "lib.dom.iterable.d.ts"],
|
|
458979
458982
|
noEmit: false,
|
|
458980
458983
|
esModuleInterop: true,
|
|
458981
458984
|
downlevelIteration: true,
|
|
@@ -458975,7 +458975,10 @@ function getNormalizedTsConfig(context, workspaceRoot, outputPath, options8) {
|
|
|
458975
458975
|
outDir: outputPath,
|
|
458976
458976
|
rootDir: workspaceRoot,
|
|
458977
458977
|
baseUrl: workspaceRoot,
|
|
458978
|
+
target: "esnext",
|
|
458979
|
+
module: "esnext",
|
|
458978
458980
|
moduleResolution: "node",
|
|
458981
|
+
lib: ["lib.esnext.d.ts", "lib.dom.d.ts", "lib.dom.iterable.d.ts"],
|
|
458979
458982
|
noEmit: false,
|
|
458980
458983
|
esModuleInterop: true,
|
|
458981
458984
|
downlevelIteration: true,
|
|
@@ -458975,7 +458975,10 @@ function getNormalizedTsConfig(context, workspaceRoot, outputPath, options8) {
|
|
|
458975
458975
|
outDir: outputPath,
|
|
458976
458976
|
rootDir: workspaceRoot,
|
|
458977
458977
|
baseUrl: workspaceRoot,
|
|
458978
|
+
target: "esnext",
|
|
458979
|
+
module: "esnext",
|
|
458978
458980
|
moduleResolution: "node",
|
|
458981
|
+
lib: ["lib.esnext.d.ts", "lib.dom.d.ts", "lib.dom.iterable.d.ts"],
|
|
458979
458982
|
noEmit: false,
|
|
458980
458983
|
esModuleInterop: true,
|
|
458981
458984
|
downlevelIteration: true,
|
package/src/utils/index.js
CHANGED
|
@@ -463868,7 +463868,10 @@ function getNormalizedTsConfig(context, workspaceRoot, outputPath, options8) {
|
|
|
463868
463868
|
outDir: outputPath,
|
|
463869
463869
|
rootDir: workspaceRoot,
|
|
463870
463870
|
baseUrl: workspaceRoot,
|
|
463871
|
+
target: "esnext",
|
|
463872
|
+
module: "esnext",
|
|
463871
463873
|
moduleResolution: "node",
|
|
463874
|
+
lib: ["lib.esnext.d.ts", "lib.dom.d.ts", "lib.dom.iterable.d.ts"],
|
|
463872
463875
|
noEmit: false,
|
|
463873
463876
|
esModuleInterop: true,
|
|
463874
463877
|
downlevelIteration: true,
|