aboutsummaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authorChocobozzz <me@florianbigard.com>2018-05-07 10:37:22 +0200
committerChocobozzz <me@florianbigard.com>2018-05-07 10:37:43 +0200
commit920d2d2b4c5d9206671171a8a2aee233a7d5dab2 (patch)
treedebcd0e941ce44846d59a2334d2112bcd85860e3
parent4b431d519c6fb0feadb1339dfddcc889b9d33cfe (diff)
downloadPeerTube-920d2d2b4c5d9206671171a8a2aee233a7d5dab2.tar.gz
PeerTube-920d2d2b4c5d9206671171a8a2aee233a7d5dab2.tar.zst
PeerTube-920d2d2b4c5d9206671171a8a2aee233a7d5dab2.zip
Add libs to tsconfig
-rw-r--r--client/src/tsconfig.app.json8
-rw-r--r--client/tsconfig.json2
2 files changed, 9 insertions, 1 deletions
diff --git a/client/src/tsconfig.app.json b/client/src/tsconfig.app.json
index 4339f4d4b..af7a74e9e 100644
--- a/client/src/tsconfig.app.json
+++ b/client/src/tsconfig.app.json
@@ -4,7 +4,13 @@
4 "outDir": "../out-tsc/app", 4 "outDir": "../out-tsc/app",
5 "baseUrl": "./", 5 "baseUrl": "./",
6 "module": "es2015", 6 "module": "es2015",
7 "types": [] 7 "types": [],
8 "lib": [
9 "es2017",
10 "es2016",
11 "es2015",
12 "dom"
13 ]
8 }, 14 },
9 "exclude": [ 15 "exclude": [
10 "test.ts", 16 "test.ts",
diff --git a/client/tsconfig.json b/client/tsconfig.json
index 43b27ce8e..8ce9c5f96 100644
--- a/client/tsconfig.json
+++ b/client/tsconfig.json
@@ -13,6 +13,8 @@
13 ], 13 ],
14 "lib": [ 14 "lib": [
15 "es2017", 15 "es2017",
16 "es2016",
17 "es2015",
16 "dom" 18 "dom"
17 ], 19 ],
18 "baseUrl": "src", 20 "baseUrl": "src",