aboutsummaryrefslogtreecommitdiffhomepage
path: root/client
diff options
context:
space:
mode:
authorChocobozzz <florian.bigard@gmail.com>2016-05-21 15:23:37 +0200
committerChocobozzz <florian.bigard@gmail.com>2016-05-21 15:23:37 +0200
commit295ba044afc394ef51dac22263063670362787ec (patch)
tree1107b48d209e44f49c11a7b0e3c598bb5831224f /client
parentcd0e4b1acfbd4cc393f6cfcab718d66e25193fbd (diff)
downloadPeerTube-295ba044afc394ef51dac22263063670362787ec.tar.gz
PeerTube-295ba044afc394ef51dac22263063670362787ec.tar.zst
PeerTube-295ba044afc394ef51dac22263063670362787ec.zip
Add the list of files inside tsconfig
Diffstat (limited to 'client')
-rw-r--r--client/tsconfig.json29
1 files changed, 28 insertions, 1 deletions
diff --git a/client/tsconfig.json b/client/tsconfig.json
index 3e4648cf7..fac9da116 100644
--- a/client/tsconfig.json
+++ b/client/tsconfig.json
@@ -9,10 +9,37 @@
9 "removeComments": false, 9 "removeComments": false,
10 "noImplicitAny": false 10 "noImplicitAny": false
11 }, 11 },
12 "filesGlob": [
13 "**/*.ts",
14 "!node_modules/**"
15 ],
12 "exclude": [ 16 "exclude": [
13 "node_modules", 17 "node_modules",
14 "typings/main", 18 "typings/main",
15 "typings/main.d.ts" 19 "typings/main.d.ts"
16 ], 20 ],
17 "compileOnSave": false 21 "compileOnSave": false,
22 "files": [
23 "angular/app/app.component.ts",
24 "angular/friends/services/friends.service.ts",
25 "angular/main.ts",
26 "angular/users/components/login/login.component.ts",
27 "angular/users/models/authStatus.ts",
28 "angular/users/models/token.ts",
29 "angular/users/models/user.ts",
30 "angular/users/services/auth.service.ts",
31 "angular/videos/components/add/videos-add.component.ts",
32 "angular/videos/components/list/video-miniature.component.ts",
33 "angular/videos/components/list/videos-list.component.ts",
34 "angular/videos/components/watch/videos-watch.component.ts",
35 "angular/videos/video.ts",
36 "angular/videos/videos.service.ts",
37 "typings/globals/es6-shim/index.d.ts",
38 "typings/globals/jasmine/index.d.ts",
39 "typings/globals/node/index.d.ts",
40 "typings/index.d.ts"
41 ],
42 "atom": {
43 "rewriteTsconfig": true
44 }
18} 45}