Skip to content
This repository has been archived by the owner on Feb 23, 2023. It is now read-only.

Commit

Permalink
use noUnusedParamter compiler flag (#49)
Browse files Browse the repository at this point in the history
  • Loading branch information
ScallyGames authored and fknop committed Jun 8, 2017
1 parent 0c922c2 commit b4aee65
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,8 @@
"experimentalDecorators": true,
"removeComments": false,
"noImplicitAny": true,
"noUnusedLocals": true,
"noUnusedLocals": true,
"noUnusedParameters": true,
"suppressImplicitAnyIndexErrors": false,
"declaration": true,
"lib": ["es6", "dom"]
Expand All @@ -20,4 +21,4 @@
"angularCompilerOptions": {
"skipTemplateCodegen": true
}
}
}

0 comments on commit b4aee65

Please sign in to comment.