NoImplicitAny flag true (#1157)

this enables the `noImplicitAny` flag in the Typescript compiler

> When the noImplicitAny flag is true and the TypeScript compiler cannot infer the type, it still generates the JavaScript files, but it also reports an error. Many seasoned developers prefer this stricter setting because type checking catches more unintentional errors at compile time.

closes: #1131
replaces #1137
This commit is contained in:
BO41 2018-10-18 09:08:59 +02:00 committed by Rigel Kent
parent 28e51e831b
commit 244b4ae397
64 changed files with 181 additions and 174 deletions

View file

@ -55,6 +55,7 @@ export interface CustomConfig {
'480p': boolean
'720p': boolean
'1080p': boolean
[key: string]: boolean
}
}