aboutsummaryrefslogtreecommitdiffhomepage
path: root/client/tsconfig.json
diff options
context:
space:
mode:
authorChocobozzz <me@florianbigard.com>2019-08-01 11:38:26 +0200
committerChocobozzz <me@florianbigard.com>2019-08-01 11:38:47 +0200
commit16b5525950c27172b8426e03cbb1c59794cfc44c (patch)
treee29f0dd37058cc90cdff07f7ab0df281e7db3505 /client/tsconfig.json
parent1f8ac02436237f0a4f2f10b8c37b28578cc5a411 (diff)
downloadPeerTube-16b5525950c27172b8426e03cbb1c59794cfc44c.tar.gz
PeerTube-16b5525950c27172b8426e03cbb1c59794cfc44c.tar.zst
PeerTube-16b5525950c27172b8426e03cbb1c59794cfc44c.zip
Update Angular -> 8.2.0
Diffstat (limited to 'client/tsconfig.json')
-rw-r--r--client/tsconfig.json40
1 files changed, 12 insertions, 28 deletions
diff --git a/client/tsconfig.json b/client/tsconfig.json
index f99c5d87d..8824c4f7c 100644
--- a/client/tsconfig.json
+++ b/client/tsconfig.json
@@ -19,40 +19,24 @@
19 "node_modules/@types" 19 "node_modules/@types"
20 ], 20 ],
21 "lib": [ 21 "lib": [
22 "es2017", 22 "es2018",
23 "es2016",
24 "es2015",
25 "dom" 23 "dom"
26 ], 24 ],
27 "types": [ 25 "baseUrl": "./",
28 "jasmine"
29 ],
30 "baseUrl": "src",
31 "paths": { 26 "paths": {
32 "@app/*": [ "app/*" ], 27 "@app/*": [ "src/app/*" ],
33 "@shared/*": [ "../../shared/*" ], 28 "@shared/*": [ "../shared/*" ],
34 "video.js": [ "../node_modules/video.js/dist/alt/video.core.js" ], 29 "video.js": [ "node_modules/video.js/dist/alt/video.core.js" ],
35 "fs": [ "./shims/noop" ], 30 "fs": [ "src/shims/noop" ],
36 "http": [ "./shims/http" ], 31 "http": [ "src/shims/http" ],
37 "https": [ "./shims/https" ], 32 "https": [ "src/shims/https" ],
38 "path": [ "./shims/path" ], 33 "path": [ "src/shims/path" ],
39 "stream": [ "./shims/noop" ], 34 "stream": [ "src/shims/noop" ],
40 "crypto": [ "./shims/noop" ] 35 "crypto": [ "src/shims/noop" ]
41 } 36 }
42 }, 37 },
43 "angularCompilerOptions": { 38 "angularCompilerOptions": {
44 "strictInjectionParameters": true, 39 "strictInjectionParameters": true,
45 "fullTemplateTypeCheck": true 40 "fullTemplateTypeCheck": true
46 }, 41 }
47 "include": [
48 "./src",
49 "../../shared"
50 ],
51 "exclude": [
52 "../../node_modules",
53 "../node_modules",
54 "../dist",
55 "../../server",
56 "../src/**/*.spec.ts"
57 ]
58} 42}