Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat(@angular/build): allow control of source map sources content for application builds #29932

Merged
merged 1 commit into from
Mar 25, 2025

Conversation

clydin
Copy link
Member

@clydin clydin commented Mar 25, 2025

The sourceMap option now contains an additional sub-option named sourcesContent that allows the exclusion of original file content from generated source maps. This option affects both JavaScript and stylesheet source maps. The value of the sourcesContent option defaults to true.

Example usage to disable sources content:

    "sourceMap": {
        "scripts": true,
        "styles": true,
        "sourcesContent": false
    }

Closes #29551

… application builds

The `sourceMap` option now contains an additional sub-option named `sourcesContent`
that allows the exclusion of original file content from generated source maps.
This option affects both JavaScript and stylesheet source maps. The value of the
`sourcesContent` option defaults to `true`.

Example usage to disable sources content:
```
    "sourceMap": {
        "scripts": true,
        "styles": true,
        "sourcesContent": false
    }
```
@clydin clydin added the target: major This PR is targeted for the next major release label Mar 25, 2025
@angular-robot angular-robot bot added detected: feature PR contains a feature commit area: @angular/build labels Mar 25, 2025
@alan-agius4 alan-agius4 added the action: merge The PR is ready for merge by the caretaker label Mar 25, 2025
@alan-agius4 alan-agius4 merged commit c1de633 into angular:main Mar 25, 2025
33 of 34 checks passed
@clydin clydin deleted the application/sourcemap-contents branch March 25, 2025 16:36
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
action: merge The PR is ready for merge by the caretaker area: @angular/build detected: feature PR contains a feature commit target: major This PR is targeted for the next major release
Projects
None yet
Development

Successfully merging this pull request may close these issues.

Allow sourcesContent configuration
3 participants