Skip to content

Commit

Permalink
Merge pull request #4843 from camptocamp/strict
Browse files Browse the repository at this point in the history
Use strict types mode
  • Loading branch information
sbrunner committed Apr 24, 2019
2 parents c44cb79 + b0c4371 commit 8c1506d
Showing 1 changed file with 10 additions and 1 deletion.
11 changes: 10 additions & 1 deletion tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,16 @@
"allowJs": true,
"checkJs": true,
"noEmit": true,
// "strict": true,
// Start strict
//"strict": true,
//"noImplicitAny": true,
//"noImplicitThis": true,
"alwaysStrict": true,
"strictBindCallApply": true,
//"strictNullChecks": true,
//"strictFunctionTypes": true,
//"strictPropertyInitialization": true,
// End strict
"baseUrl": "./",
"paths": {
"ngeo/*": ["src/*"],
Expand Down

0 comments on commit 8c1506d

Please sign in to comment.