You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: aio/content/guide/build.md
+3-4Lines changed: 3 additions & 4 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -305,7 +305,7 @@ To disable these warnings, add the CommonJS module name to `allowedCommonJsDepen
305
305
306
306
The Angular CLI uses [Browserslist](https://github.com/browserslist/browserslist) to ensure compatibility with different browser versions. [Autoprefixer](https://github.com/postcss/autoprefixer) is used for CSS vendor prefixing and [@babel/preset-env](https://babeljs.io/docs/en/babel-preset-env) for JavaScript syntax transformations.
307
307
308
-
Internally, the Angular CLI uses the below `browserslist` configuration which matches the [browsers that are supported by Angular](guide/browser-support).
308
+
Internally, the Angular CLI uses the below `browserslist` configuration which matches the [browsers that are supported](guide/browser-support) by Angular.
309
309
310
310
<code-exampleformat="none"language="text">
311
311
last 1 Chrome version
@@ -317,9 +317,6 @@ Internally, the Angular CLI uses the below `browserslist` configuration which ma
317
317
</code-example>
318
318
319
319
320
-
The CLI uses [Autoprefixer](https://github.com/postcss/autoprefixer) to ensure compatibility with different browser and browser versions.
321
-
You might find it necessary to target specific browsers or exclude certain browser versions from your build.
322
-
323
320
To override the internal configuration, add a new file named `.browserslistrc`, to the project directory, that specifies the browsers you want to support:
324
321
325
322
<code-exampleformat="none"language="text">
@@ -330,7 +327,9 @@ To override the internal configuration, add a new file named `.browserslistrc`,
330
327
See the [browserslist repository](https://github.com/browserslist/browserslist) for more examples of how to target specific browsers and versions.
331
328
332
329
<divclass="alert is-helpful">
330
+
333
331
Use [browsersl.ist](https://browsersl.ist) to display compatible browsers for a `browserslist` query.
Copy file name to clipboardExpand all lines: aio/content/guide/typescript-configuration.md
+9-33Lines changed: 9 additions & 33 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -32,34 +32,14 @@ For more information, see the [Configuration inheritance with extends](https://w
32
32
33
33
<divclass="alert is-helpful">
34
34
35
-
For more information TypeScript configuration files, see the official [TypeScript wiki](https://www.typescriptlang.org/docs/handbook/tsconfig-json.html).
35
+
For more information TypeScript configuration files, see the official [TypeScript handbook](https://www.typescriptlang.org/docs/handbook/tsconfig-json.html).
36
36
For details about configuration inheritance, see the [Configuration inheritance with extends](https://www.typescriptlang.org/docs/handbook/tsconfig-json.html#configuration-inheritance-with-extends) section.
37
37
38
38
</div>
39
39
40
40
The initial `tsconfig.json` for an Angular workspace typically looks like the following example.
0 commit comments