Skip to content

Commit c1b9f5c

Browse files
committed
docs: add note about ember-cli-typescript-blueprints.
1 parent 9a8d2f9 commit c1b9f5c

File tree

1 file changed

+20
-0
lines changed

1 file changed

+20
-0
lines changed

tests/dummy/app/templates/docs/configuration.md

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,25 @@
11
# Configuring ember-cli-typescript
22

3+
## Blueprints
4+
5+
By default, ember-cli-typescript installs the [ember-cli-typescript-blueprints][blueprints] package so that you can use Ember's generators like normal, but with all the special sauce you need for things to work nicely throughout your system with TypeScript.
6+
7+
[blueprints]: https://github.com/typed-ember/ember-cli-typescript-blueprints
8+
9+
If you want to stick with the normal JavaScript blueprints—say, because your team isn't ready to dive into the deep end with making *everything* typescript yet—you can simply uninstall the blueprints package.
10+
11+
With yarn:
12+
13+
```sh
14+
yarn remove ember-cli-typescript-blueprints
15+
```
16+
17+
With npm:
18+
19+
```sh
20+
npm uninstall ember-cli-typescript-blueprints
21+
```
22+
323
## `tsconfig.json`
424

525
We generate a good default [`tsconfig.json`][blueprint], which will usually make everything _Just Work™_. In general, you may customize your TypeScript build process as usual using the `tsconfig.json` file.

0 commit comments

Comments
 (0)