I am trying to turn off sourcemaps for my tests in Angular 6. I know the sourcemaps switch has been removed, e.g., ng test --sourcemaps=false
.
I have tried modifying my tsconfig file:
{
"extends": "../tsconfig.json",
"compilerOptions": {
...
"sourceMap": false
},
As referenced by the angular.json test -> configuration block:
"test": {
...
"options": {
...
"tsConfig": "src/tsconfig.spec.json",
The source maps are still being generated.
See Question&Answers more detail:
os 与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…