NPM ERR! kod elifecycle npm err! errno 2 npm err! Funkcje@ 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