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

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