@storm-software/workspace-tools 1.28.0 → 1.30.0

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.
@@ -48237,17 +48237,29 @@ function getOutputPath(options) {
48237
48237
  function createProjectTsConfigJson(tree, options) {
48238
48238
  const tsconfig = {
48239
48239
  extends: options.rootProject ? void 0 : (0, import_js.getRelativePathToRootTsConfig)(tree, options.projectRoot),
48240
+ ...options?.tsConfigOptions ?? {},
48240
48241
  compilerOptions: {
48241
48242
  ...options.rootProject ? import_js.tsConfigBaseOptions : {},
48242
48243
  outDir: (0, import_devkit.joinPathFragments)(
48243
48244
  (0, import_devkit.offsetFromRoot)(options.projectRoot),
48244
48245
  "dist/out-tsc"
48245
48246
  ),
48246
- noEmit: true
48247
+ noEmit: true,
48248
+ ...options?.tsConfigOptions?.compilerOptions ?? {}
48247
48249
  },
48248
- files: [],
48249
- include: ["src/**/*.ts", "src/**/*.js", "bin/**/*"],
48250
- exclude: ["jest.config.ts", "src/**/*.spec.ts", "src/**/*.test.ts"]
48250
+ files: [...options?.tsConfigOptions?.files ?? []],
48251
+ include: [
48252
+ ...options?.tsConfigOptions?.include ?? [],
48253
+ "src/**/*.ts",
48254
+ "src/**/*.js",
48255
+ "bin/**/*"
48256
+ ],
48257
+ exclude: [
48258
+ ...options?.tsConfigOptions?.exclude ?? [],
48259
+ "jest.config.ts",
48260
+ "src/**/*.spec.ts",
48261
+ "src/**/*.test.ts"
48262
+ ]
48251
48263
  };
48252
48264
  (0, import_devkit.writeJson)(
48253
48265
  tree,
@@ -48345,7 +48357,7 @@ async function nodeLibraryGeneratorFn(tree, schema) {
48345
48357
  return null;
48346
48358
  }
48347
48359
  var generator_default = withRunGenerator(
48348
- "TypeScript Build (NodeJs Platform)",
48360
+ "TypeScript Library Creator (NodeJs Platform)",
48349
48361
  nodeLibraryGeneratorFn
48350
48362
  );
48351
48363
  // Annotate the CommonJS export names for ESM import in node: