diff options
author | BO41 <lukasw41@gmail.com> | 2018-10-18 09:08:59 +0200 |
---|---|---|
committer | Rigel Kent <par@rigelk.eu> | 2018-10-18 09:08:59 +0200 |
commit | 244b4ae3973bc1511464a08158a123767f83179c (patch) | |
tree | 24f4399489167bc92921e3fe0c1c04a87d7c1161 /shared/models/i18n | |
parent | 28e51e831bd121f063600a597d7b02f8fd846de9 (diff) | |
download | PeerTube-244b4ae3973bc1511464a08158a123767f83179c.tar.gz PeerTube-244b4ae3973bc1511464a08158a123767f83179c.tar.zst PeerTube-244b4ae3973bc1511464a08158a123767f83179c.zip |
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
Diffstat (limited to 'shared/models/i18n')
-rw-r--r-- | shared/models/i18n/i18n.ts | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/shared/models/i18n/i18n.ts b/shared/models/i18n/i18n.ts index 5c3249452..9278c043b 100644 --- a/shared/models/i18n/i18n.ts +++ b/shared/models/i18n/i18n.ts | |||
@@ -1,6 +1,6 @@ | |||
1 | export const LOCALE_FILES = [ 'player', 'server' ] | 1 | export const LOCALE_FILES = [ 'player', 'server' ] |
2 | 2 | ||
3 | export const I18N_LOCALES = { | 3 | export const I18N_LOCALES: any = { |
4 | 'en-US': 'English', | 4 | 'en-US': 'English', |
5 | 'fr-FR': 'Français', | 5 | 'fr-FR': 'Français', |
6 | 'eu-ES': 'Euskara', | 6 | 'eu-ES': 'Euskara', |
@@ -17,7 +17,7 @@ export const I18N_LOCALES = { | |||
17 | 'zh-Hans-CN': '简体中文(中国)' | 17 | 'zh-Hans-CN': '简体中文(中国)' |
18 | } | 18 | } |
19 | 19 | ||
20 | const I18N_LOCALE_ALIAS = { | 20 | const I18N_LOCALE_ALIAS: any = { |
21 | 'en': 'en-US', | 21 | 'en': 'en-US', |
22 | 'fr': 'fr-FR', | 22 | 'fr': 'fr-FR', |
23 | 'eu': 'eu-ES', | 23 | 'eu': 'eu-ES', |