Skip to content

Commit 3a3d5b0

Browse files
authored
Merge pull request #313 from achambers/patch-4
Update configuration.md with isTypeScriptProject
2 parents 2e4e758 + 9466c6e commit 3a3d5b0

File tree

1 file changed

+7
-2
lines changed

1 file changed

+7
-2
lines changed

guides/appendix/configuration.md

+7-2
Original file line numberDiff line numberDiff line change
@@ -21,13 +21,18 @@ Every development environment will be different but a realistic example setting
2121
// disableAnalytics added by ember new
2222
"disableAnalytics": false,
2323
"port": 8080,
24-
"proxy": "http://localhost:3000"
24+
"proxy": "http://localhost:3000",
25+
"isTypeScriptProject": true
2526
}
2627
```
2728

2829
For a complete list of command line options run `ember help`.
2930

30-
### `package.json` Configuration
31+
### `isTypeScriptProject` option (default: `false`)
32+
33+
Allows users to mark an entire Ember app or addon as a TypeScript-first project. The presence of this flag would indicate that blueprints should output TypeScript by default, rather than JavaScript as they normally would.
34+
35+
## `package.json` Configuration
3136

3237
Some configuration is exposed through your `package.json` file.
3338

0 commit comments

Comments
 (0)