@storm-software/workspace-tools 1.60.15 → 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 +12 -0
- package/index.js +2 -0
- package/meta.json +1 -1
- package/package.json +1 -1
- package/src/executors/tsup/executor.js +2 -0
- package/src/executors/tsup-browser/executor.js +2 -0
- package/src/executors/tsup-neutral/executor.js +2 -0
- package/src/executors/tsup-node/executor.js +2 -0
- package/src/utils/index.js +2 -0
package/package.json
CHANGED
|
@@ -465167,6 +465167,8 @@ 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",
|
|
465171
465173
|
lib: ["lib.esnext.d.ts", "lib.dom.d.ts", "lib.dom.iterable.d.ts"],
|
|
465172
465174
|
noEmit: false,
|
|
@@ -458975,6 +458975,8 @@ 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",
|
|
458979
458981
|
lib: ["lib.esnext.d.ts", "lib.dom.d.ts", "lib.dom.iterable.d.ts"],
|
|
458980
458982
|
noEmit: false,
|
|
@@ -458975,6 +458975,8 @@ 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",
|
|
458979
458981
|
lib: ["lib.esnext.d.ts", "lib.dom.d.ts", "lib.dom.iterable.d.ts"],
|
|
458980
458982
|
noEmit: false,
|
|
@@ -458975,6 +458975,8 @@ 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",
|
|
458979
458981
|
lib: ["lib.esnext.d.ts", "lib.dom.d.ts", "lib.dom.iterable.d.ts"],
|
|
458980
458982
|
noEmit: false,
|
package/src/utils/index.js
CHANGED
|
@@ -463868,6 +463868,8 @@ 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",
|
|
463872
463874
|
lib: ["lib.esnext.d.ts", "lib.dom.d.ts", "lib.dom.iterable.d.ts"],
|
|
463873
463875
|
noEmit: false,
|