How do I turn off source maps for Angular 6 ng test?

ja6a picture ja6a · Jun 8, 2018 · Viewed 25k times · Source

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.

Answer

Steve Fitzsimons picture Steve Fitzsimons · Jun 12, 2018

You can use

CLI v6.0.8 and above --source-map=false

CLI v6.x --sourceMap=false

CLI v1.x --sourcemaps=false