diff options
author | Chocobozzz <me@florianbigard.com> | 2019-03-06 15:36:44 +0100 |
---|---|---|
committer | Chocobozzz <chocobozzz@cpy.re> | 2019-03-18 11:17:59 +0100 |
commit | 830b4faff15fb9c81d88e8e69fcdf94aad32bef8 (patch) | |
tree | 53de6c9e30ce88734b4bdda62016e0498fe78491 /client/tsconfig.json | |
parent | d4c9f45b31eda0b7a391ddc83eb290ca5cba311f (diff) | |
download | PeerTube-830b4faff15fb9c81d88e8e69fcdf94aad32bef8.tar.gz PeerTube-830b4faff15fb9c81d88e8e69fcdf94aad32bef8.tar.zst PeerTube-830b4faff15fb9c81d88e8e69fcdf94aad32bef8.zip |
Add/update/delete/list my playlists
Diffstat (limited to 'client/tsconfig.json')
-rw-r--r-- | client/tsconfig.json | 12 |
1 files changed, 8 insertions, 4 deletions
diff --git a/client/tsconfig.json b/client/tsconfig.json index 3f9986f8a..a0fbc27c6 100644 --- a/client/tsconfig.json +++ b/client/tsconfig.json | |||
@@ -28,6 +28,7 @@ | |||
28 | "baseUrl": "src", | 28 | "baseUrl": "src", |
29 | "paths": { | 29 | "paths": { |
30 | "@app/*": [ "app/*" ], | 30 | "@app/*": [ "app/*" ], |
31 | "@shared/*": [ "../../shared/*" ], | ||
31 | "video.js": [ "../node_modules/video.js/dist/alt/video.core.js" ], | 32 | "video.js": [ "../node_modules/video.js/dist/alt/video.core.js" ], |
32 | "fs": [ "./shims/noop" ], | 33 | "fs": [ "./shims/noop" ], |
33 | "http": [ "./shims/http" ], | 34 | "http": [ "./shims/http" ], |
@@ -41,11 +42,14 @@ | |||
41 | "strictInjectionParameters": true, | 42 | "strictInjectionParameters": true, |
42 | "fullTemplateTypeCheck": true | 43 | "fullTemplateTypeCheck": true |
43 | }, | 44 | }, |
45 | "include": [ | ||
46 | "../../shared" | ||
47 | ], | ||
44 | "exclude": [ | 48 | "exclude": [ |
49 | "../../node_modules", | ||
45 | "../node_modules", | 50 | "../node_modules", |
46 | "node_modules", | 51 | "../dist", |
47 | "dist", | 52 | "../../server", |
48 | "../server", | 53 | "../src/**/*.spec.ts" |
49 | "src/**/*.spec.ts" | ||
50 | ] | 54 | ] |
51 | } | 55 | } |