Skip to content

Commit

Permalink
build(tsConfig): changed the noUnusedParameters to false
Browse files Browse the repository at this point in the history
--noUnusedParameters flag throws error for unused parameters in a function which breaks the build
sometimes
  • Loading branch information
khawarizmus committed Jun 6, 2018
1 parent ea7e0f3 commit f823b51
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@

/* Additional Checks */
"noUnusedLocals": true, /* Report errors on unused locals. */
"noUnusedParameters": true, /* Report errors on unused parameters. */
"noUnusedParameters": false, /* Report errors on unused parameters. */
// "noImplicitReturns": true, /* Report error when not all code paths in function return a value. */
// "noFallthroughCasesInSwitch": true, /* Report errors for fallthrough cases in switch statement. */

Expand Down

0 comments on commit f823b51

Please sign in to comment.