Skip to content

Commit

Permalink
upgraded to building with ts 2.6
Browse files Browse the repository at this point in the history
  • Loading branch information
johnnyreilly committed Nov 4, 2017
1 parent e4cbeb8 commit 4d4b8aa
Show file tree
Hide file tree
Showing 4 changed files with 79 additions and 632 deletions.
5 changes: 2 additions & 3 deletions package.json
Expand Up @@ -63,9 +63,8 @@
"karma-webpack": "^2.0.1",
"mkdirp": "^0.5.1",
"mocha": "^4.0.0",
"rimraf": "^2.4.2",
"typescript": "^2.4.2",
"typings": "^2.0.0",
"rimraf": "^2.6.2",
"typescript": "^2.6.1",
"webpack": "^3.6.0"
}
}
1 change: 1 addition & 0 deletions src/tsconfig.json
Expand Up @@ -7,6 +7,7 @@
"noUnusedLocals": true,
"noUnusedParameters": true,
"suppressImplicitAnyIndexErrors": true,
"strictFunctionTypes": true,
"strictNullChecks": true,
"lib": [
"es5", "es2015.core"
Expand Down
2 changes: 1 addition & 1 deletion src/utils.ts
Expand Up @@ -45,7 +45,7 @@ function defaultErrorFormatter(error: ErrorInfo, colors: Chalk) {
* Optionally adds a file name
*/
export function formatErrors(
diagnostics: typescript.Diagnostic[] | undefined,
diagnostics: ReadonlyArray<typescript.Diagnostic> | undefined,
loaderOptions: LoaderOptions,
colors: Chalk,
compiler: typeof typescript,
Expand Down

0 comments on commit 4d4b8aa

Please sign in to comment.