NPM Err! Code Elfecycle NPM Err! Errno 2 npm err! Funktionen@ Lint: `Tslint -Project tsconfig.json`

Change the "firebase.json" file's "predeploy" section from this: 

 "functions": {
    "predeploy": [
      "npm --prefix \"$RESOURCE_DIR\" run lint",
      "npm --prefix \"$RESOURCE_DIR\" run build"
    ]
  },
  
To this:

 "functions": {
    "predeploy": [
      "npm --prefix \"%RESOURCE_DIR%\" run lint",
      "npm --prefix \"%RESOURCE_DIR%\" run build"
    ]
  }
ChernobylBob