diff options
author | Chocobozzz <me@florianbigard.com> | 2022-05-24 16:29:01 +0200 |
---|---|---|
committer | Chocobozzz <me@florianbigard.com> | 2022-06-08 13:40:40 +0200 |
commit | eaa529528cafcfb291009f9f99d296c81e792899 (patch) | |
tree | c8e3562f73312fb331a363e1daeaeb4949cc8448 /client/tsconfig.json | |
parent | e435cf44c00aba359bf0f265d06bff4841b3f7fe (diff) | |
download | PeerTube-eaa529528cafcfb291009f9f99d296c81e792899.tar.gz PeerTube-eaa529528cafcfb291009f9f99d296c81e792899.tar.zst PeerTube-eaa529528cafcfb291009f9f99d296c81e792899.zip |
Support ICU in TS components
Diffstat (limited to 'client/tsconfig.json')
-rw-r--r-- | client/tsconfig.json | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/client/tsconfig.json b/client/tsconfig.json index 41814d036..7a0584d5c 100644 --- a/client/tsconfig.json +++ b/client/tsconfig.json | |||
@@ -6,7 +6,7 @@ | |||
6 | "sourceMap": true, | 6 | "sourceMap": true, |
7 | "declaration": false, | 7 | "declaration": false, |
8 | "moduleResolution": "node", | 8 | "moduleResolution": "node", |
9 | "module": "esnext", | 9 | "module": "es2020", |
10 | "experimentalDecorators": true, | 10 | "experimentalDecorators": true, |
11 | "noImplicitAny": true, | 11 | "noImplicitAny": true, |
12 | "noImplicitThis": true, | 12 | "noImplicitThis": true, |
@@ -15,11 +15,12 @@ | |||
15 | "importHelpers": true, | 15 | "importHelpers": true, |
16 | "allowSyntheticDefaultImports": true, | 16 | "allowSyntheticDefaultImports": true, |
17 | "strictBindCallApply": true, | 17 | "strictBindCallApply": true, |
18 | "target": "es2015", | 18 | "target": "es2017", |
19 | "typeRoots": [ | 19 | "typeRoots": [ |
20 | "node_modules/@types" | 20 | "node_modules/@types" |
21 | ], | 21 | ], |
22 | "lib": [ | 22 | "lib": [ |
23 | "ES2020.Intl", | ||
23 | "es2018", | 24 | "es2018", |
24 | "es2017", | 25 | "es2017", |
25 | "es2016", | 26 | "es2016", |