-
Notifications
You must be signed in to change notification settings - Fork 1.2k
Closed
Labels
Description
Starting from version 0.25.0, TypeScript compilations using TSC now include only the filename in sourcemaps instead of the full file path.
Reproduction:
Comparison
Version 0.24.x
{
"version": 3,
"sources": ["src/app/app.config.ts", "src/main.ts"],
"sourcesContent": [null, null],
"mappings": "MACO,IAAMA,EAAa,CAAA,ECC1B,QAAQ,IAAIC,CAAS",
"names": ["appConfig", "appConfig"]
}
Version 0.25.0
{
"version": 3,
"sources": ["app.config.ts", "main.ts"],
"sourcesContent": [null, null],
"mappings": "MACO,IAAMA,EAAa,CAAA,ECC1B,QAAQ,IAAIC,CAAS",
"names": ["appConfig", "appConfig"]
}
wkillerud