docs: removed duplicate "compilerOptions" property (#32449)

PR Close #32449
This commit is contained in:
Kirk Larkin 2019-09-02 22:08:52 +01:00 committed by Miško Hevery
parent e8f9ba4b6c
commit d0b3688a23
1 changed files with 1 additions and 1 deletions

View File

@ -34,7 +34,6 @@ The initial `tsconfig.json` for an Angular app typically looks like this example
<code-example lang="json" header="tsconfig.json" linenums="false">
{
"compileOnSave": false,
"compilerOptions": {
"compilerOptions": {
"baseUrl": "./",
"outDir": "./dist/out-tsc",
@ -54,6 +53,7 @@ The initial `tsconfig.json` for an Angular app typically looks like this example
"dom"
]
}
}
</code-example>