@storm-software/workspace-tools 1.13.18 → 1.13.19

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@storm-software/workspace-tools",
3
- "version": "1.13.18",
3
+ "version": "1.13.19",
4
4
  "private": false,
5
5
  "description": "⚡ A Nx plugin package that contains various executors and generators used in a Storm workspaces.",
6
6
  "keywords": [
@@ -106102,12 +106102,12 @@ function getNormalizedTsConfig(workspaceRoot, outputPath, options2) {
106102
106102
  ts2.sys,
106103
106103
  (0, import_path3.dirname)(options2.tsConfig)
106104
106104
  );
106105
- tsConfig.options.outDir = options2.outputPath;
106105
+ tsConfig.options.outDir = outputPath;
106106
106106
  tsConfig.options.noEmitOnError = true;
106107
- tsConfig.options.rootDir = options2.rootDir;
106107
+ tsConfig.options.rootDir = workspaceRoot;
106108
106108
  if (tsConfig.options.incremental && !tsConfig.options.tsBuildInfoFile) {
106109
106109
  tsConfig.options.tsBuildInfoFile = (0, import_devkit.joinPathFragments)(
106110
- options2.outputPath,
106110
+ outputPath,
106111
106111
  "tsconfig.tsbuildinfo"
106112
106112
  );
106113
106113
  }