]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blame - client/tsconfig.json
Client: try to make it work with Android Firefox
[github/Chocobozzz/PeerTube.git] / client / tsconfig.json
CommitLineData
6f4e2522
C
1{
2 "compilerOptions": {
3 "target": "es5",
230809ef 4 "module": "commonjs",
6f4e2522
C
5 "moduleResolution": "node",
6 "sourceMap": true,
7 "emitDecoratorMetadata": true,
8 "experimentalDecorators": true,
ce98c80c
C
9 "noImplicitAny": false,
10 "noEmitHelpers": true
11 },
12 "awesomeTypescriptLoaderOptions": {
13 "forkChecker": true
14 },
15 "compileOnSave": false,
16 "buildOnSave": false,
17 "atom": {
18 "rewriteTsconfig": true
6f4e2522 19 },
295ba044
C
20 "filesGlob": [
21 "**/*.ts",
22 "!node_modules/**"
23 ],
6f4e2522
C
24 "exclude": [
25 "node_modules",
26 "typings/main",
27 "typings/main.d.ts"
28 ],
295ba044 29 "files": [
4a6995be 30 "src/app/app.component.ts",
0629423c 31 "src/app/app.routes.ts",
4a6995be
C
32 "src/app/friends/friend.service.ts",
33 "src/app/friends/index.ts",
34 "src/app/login/index.ts",
35 "src/app/login/login.component.ts",
0629423c 36 "src/app/login/login.routes.ts",
4a6995be
C
37 "src/app/shared/index.ts",
38 "src/app/shared/search/index.ts",
39 "src/app/shared/search/search-field.type.ts",
40 "src/app/shared/search/search.component.ts",
41 "src/app/shared/search/search.model.ts",
00a44645 42 "src/app/shared/search/search.service.ts",
4a6995be
C
43 "src/app/shared/users/auth-status.model.ts",
44 "src/app/shared/users/auth.service.ts",
45 "src/app/shared/users/index.ts",
46 "src/app/shared/users/token.model.ts",
47 "src/app/shared/users/user.model.ts",
48 "src/app/videos/index.ts",
49 "src/app/videos/shared/index.ts",
50 "src/app/videos/shared/loader/index.ts",
51 "src/app/videos/shared/loader/loader.component.ts",
52 "src/app/videos/shared/pagination.model.ts",
53 "src/app/videos/shared/sort-field.type.ts",
54 "src/app/videos/shared/video.model.ts",
55 "src/app/videos/shared/video.service.ts",
56 "src/app/videos/video-add/index.ts",
57 "src/app/videos/video-add/video-add.component.ts",
58 "src/app/videos/video-list/index.ts",
59 "src/app/videos/video-list/video-list.component.ts",
60 "src/app/videos/video-list/video-miniature.component.ts",
61 "src/app/videos/video-list/video-sort.component.ts",
62 "src/app/videos/video-watch/index.ts",
63 "src/app/videos/video-watch/video-watch.component.ts",
64 "src/app/videos/video-watch/webtorrent.service.ts",
0629423c
C
65 "src/app/videos/videos.component.ts",
66 "src/app/videos/videos.routes.ts",
4a6995be
C
67 "src/custom-typings.d.ts",
68 "src/main.ts",
69 "src/polyfills.ts",
70 "src/vendor.ts",
295ba044
C
71 "typings/globals/es6-shim/index.d.ts",
72 "typings/globals/jasmine/index.d.ts",
73 "typings/globals/node/index.d.ts",
74 "typings/index.d.ts"
ce98c80c 75 ]
6f4e2522 76}