@storm-software/workspace-tools 1.63.2 → 1.63.3
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
|
@@ -453283,6 +453283,8 @@ Error: ${rawTsconfig.error.messageText}` : ""}`
|
|
|
453283
453283
|
compilerOptions: {
|
|
453284
453284
|
...rawTsconfig.config?.compilerOptions,
|
|
453285
453285
|
outDir: outputPath,
|
|
453286
|
+
rootDir: ".",
|
|
453287
|
+
baseUrl: correctPaths(workspaceRoot),
|
|
453286
453288
|
noEmit: false,
|
|
453287
453289
|
emitDeclarationOnly: true,
|
|
453288
453290
|
declaration: true,
|
|
@@ -447088,6 +447088,8 @@ Error: ${rawTsconfig.error.messageText}` : ""}`
|
|
|
447088
447088
|
compilerOptions: {
|
|
447089
447089
|
...rawTsconfig.config?.compilerOptions,
|
|
447090
447090
|
outDir: outputPath,
|
|
447091
|
+
rootDir: ".",
|
|
447092
|
+
baseUrl: correctPaths(workspaceRoot),
|
|
447091
447093
|
noEmit: false,
|
|
447092
447094
|
emitDeclarationOnly: true,
|
|
447093
447095
|
declaration: true,
|
|
@@ -447088,6 +447088,8 @@ Error: ${rawTsconfig.error.messageText}` : ""}`
|
|
|
447088
447088
|
compilerOptions: {
|
|
447089
447089
|
...rawTsconfig.config?.compilerOptions,
|
|
447090
447090
|
outDir: outputPath,
|
|
447091
|
+
rootDir: ".",
|
|
447092
|
+
baseUrl: correctPaths(workspaceRoot),
|
|
447091
447093
|
noEmit: false,
|
|
447092
447094
|
emitDeclarationOnly: true,
|
|
447093
447095
|
declaration: true,
|
|
@@ -447088,6 +447088,8 @@ Error: ${rawTsconfig.error.messageText}` : ""}`
|
|
|
447088
447088
|
compilerOptions: {
|
|
447089
447089
|
...rawTsconfig.config?.compilerOptions,
|
|
447090
447090
|
outDir: outputPath,
|
|
447091
|
+
rootDir: ".",
|
|
447092
|
+
baseUrl: correctPaths(workspaceRoot),
|
|
447091
447093
|
noEmit: false,
|
|
447092
447094
|
emitDeclarationOnly: true,
|
|
447093
447095
|
declaration: true,
|
package/src/utils/index.js
CHANGED
|
@@ -457349,6 +457349,8 @@ Error: ${rawTsconfig.error.messageText}` : ""}`
|
|
|
457349
457349
|
compilerOptions: {
|
|
457350
457350
|
...rawTsconfig.config?.compilerOptions,
|
|
457351
457351
|
outDir: outputPath,
|
|
457352
|
+
rootDir: ".",
|
|
457353
|
+
baseUrl: correctPaths(workspaceRoot),
|
|
457352
457354
|
noEmit: false,
|
|
457353
457355
|
emitDeclarationOnly: true,
|
|
457354
457356
|
declaration: true,
|