Skip to content

Commit

Permalink
ensure scripts are strictly typed
Browse files Browse the repository at this point in the history
  • Loading branch information
Brendan Forster committed Jun 22, 2018
1 parent 7762406 commit bbab6f3
Showing 1 changed file with 2 additions and 4 deletions.
6 changes: 2 additions & 4 deletions script/tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,14 +3,12 @@
"module": "commonjs",
"moduleResolution": "node",
"target": "es6",
"noImplicitAny": true,
"noImplicitReturns": true,
"noImplicitThis": true,
"noFallthroughCasesInSwitch": true,
"noUnusedLocals": true,
"strictNullChecks": true,
"sourceMap": false,
"noEmit": true
"noEmit": true,
"strict": true,
},
"compileOnSave": false
}

0 comments on commit bbab6f3

Please sign in to comment.