Skip to content

Commit

Permalink
fix(storybook): tsConfig option for storybook angular (#10663)
Browse files Browse the repository at this point in the history
  • Loading branch information
mandarini committed Jun 9, 2022
1 parent e29cd09 commit 56dbb0d
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 7 deletions.
7 changes: 4 additions & 3 deletions docs/generated/packages/angular.json
Expand Up @@ -1921,9 +1921,10 @@
"enum": ["eslint", "none"],
"default": "eslint"
},
"projectBuildConfig": {
"description": "Provide a custom projectBuildConfig for the Angular executor. If left blank, Nx will use the default.",
"type": "string"
"tsConfiguration": {
"type": "boolean",
"description": "Configure your project with TypeScript. Generate main.ts and preview.ts files, instead of main.js and preview.js.",
"default": false
}
},
"additionalProperties": false,
Expand Down
Expand Up @@ -7,5 +7,5 @@ export interface StorybookConfigurationOptions {
linter: Exclude<Linter, Linter.TsLint>;
name: string;
cypressDirectory?: string;
projectBuildConfig?: string;
tsConfiguration?: boolean;
}
Expand Up @@ -42,9 +42,10 @@
"enum": ["eslint", "none"],
"default": "eslint"
},
"projectBuildConfig": {
"description": "Provide a custom projectBuildConfig for the Angular executor. If left blank, Nx will use the default.",
"type": "string"
"tsConfiguration": {
"type": "boolean",
"description": "Configure your project with TypeScript. Generate main.ts and preview.ts files, instead of main.js and preview.js.",
"default": false
}
},
"additionalProperties": false,
Expand Down

1 comment on commit 56dbb0d

@vercel
Copy link

@vercel vercel bot commented on 56dbb0d Jun 9, 2022

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Successfully deployed to the following URLs:

nx-dev – ./

nx-dev-nrwl.vercel.app
nx-five.vercel.app
nx-dev-git-master-nrwl.vercel.app
nx.dev

Please sign in to comment.