@storm-software/workspace-tools 1.13.23 → 1.13.24

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.23",
3
+ "version": "1.13.24",
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": [
@@ -105840,7 +105840,7 @@ var outExtension = ({ options: options2, format: format2, pkgType }) => {
105840
105840
  async function runExecutor(options2, context) {
105841
105841
  try {
105842
105842
  console.log("\u{1F4E6} Running Storm build executor on the workspace");
105843
- options2.entry ??= "{sourceRoot}/**/*.{ts,tsx}";
105843
+ options2.entry ??= "{sourceRoot}/index.ts";
105844
105844
  options2.outputPath ??= "dist/{projectRoot}";
105845
105845
  options2.tsConfig ??= "tsconfig.json";
105846
105846
  options2.banner ??= process.env.STORM_FILE_BANNER;
@@ -106108,9 +106108,11 @@ function getNormalizedTsConfig(workspaceRoot, outputPath, options2) {
106108
106108
  ts2.sys,
106109
106109
  (0, import_path3.dirname)(options2.tsConfig)
106110
106110
  );
106111
+ tsConfig.options.noEmit = false;
106111
106112
  tsConfig.options.outDir = outputPath;
106112
- tsConfig.options.noEmitOnError = true;
106113
106113
  tsConfig.options.rootDir = workspaceRoot;
106114
+ tsConfig.options.baseUrl = workspaceRoot;
106115
+ tsConfig.options.pathsBasePath = workspaceRoot;
106114
106116
  if (tsConfig.options.incremental && !tsConfig.options.tsBuildInfoFile) {
106115
106117
  tsConfig.options.tsBuildInfoFile = (0, import_devkit.joinPathFragments)(
106116
106118
  outputPath,