docs: Fix compiler option name reference (#40362)

The `skipTemplateCodegen` option was incorrectly referenced using camelcase `skipTemplateCodeGen`.

PR Close #40362
This commit is contained in:
Lincoln Baxter, III 2021-01-08 10:45:48 -05:00 committed by atscott
parent 1e46b73463
commit 34d2988d14
1 changed files with 1 additions and 1 deletions

View File

@ -180,7 +180,7 @@ For library projects generated with the CLI, the dev configuration default is `t
### `strictMetadataEmit`
When `true`, reports an error to the `.metadata.json` file if `"skipMetadataEmit"` is `false`.
Default is `false`. Use only when `"skipMetadataEmit"` is `false` and `"skipTemplateCodeGen"` is `true`.
Default is `false`. Use only when `"skipMetadataEmit"` is `false` and `"skipTemplateCodegen"` is `true`.
This option is intended to validate the `.metadata.json` files emitted for bundling with an `npm` package. The validation is strict and can emit errors for metadata that would never produce an error when used by the template compiler. You can choose to suppress the error emitted by this option for an exported symbol by including `@dynamic` in the comment documenting the symbol.