From d3bec8624d27d498047ff21c2bce5526b3415939 Mon Sep 17 00:00:00 2001 From: Miguel Andrade Date: Mon, 26 Feb 2024 07:08:17 -0800 Subject: [PATCH] Document typescript option --- README.md | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/README.md b/README.md index 404eab89..08b51886 100644 --- a/README.md +++ b/README.md @@ -127,6 +127,16 @@ use the `--release-it` flag ember addon my-addon -b @embroider/addon-blueprint --yarn --release-it ``` +#### `--typescript` + +Sets up the new addon with [`typescript`](https://www.typescriptlang.org/) support. + +Example: + +```bash +ember addon my-addon -b @embroider/addon-blueprint --typescript +``` + ### Updating the addon The blueprint supports `ember-cli-update` to update your addon with any changes that occurred in the blueprint since you created the addon. So to update your addons boilerplate, simply run `ember-cli-update` (or `npx ember-cli-update` if you haven't installed it globally).