Skip to content

Commit

Permalink
fix(@schematics/angular): remove declaration and sourceMap from d…
Browse files Browse the repository at this point in the history
…efault tsconfig

The `declaration` TypeScript option has been removed from the default generated
`tsconfig` for new projects. This option was explicitly set to `false`. However,
the default value for the option is already `false`.
Also, the `sourceMap` option has been removed. Source map generation is controlled
by the build options and not the TypeScript configuration.
  • Loading branch information
clydin authored and alan-agius4 committed Aug 20, 2024
1 parent e72eb05 commit 7992218
Showing 1 changed file with 0 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -12,8 +12,6 @@
"skipLibCheck": true,
"isolatedModules": true,
"esModuleInterop": true,
"sourceMap": true,
"declaration": false,
"experimentalDecorators": true,
"moduleResolution": "bundler",
"importHelpers": true,
Expand Down

0 comments on commit 7992218

Please sign in to comment.