Add trivial sort for the client
[oweals/peertube.git] / client / tsconfig.json
1 {
2   "compilerOptions": {
3     "target": "es5",
4     "module": "commonjs",
5     "moduleResolution": "node",
6     "sourceMap": true,
7     "emitDecoratorMetadata": true,
8     "experimentalDecorators": true,
9     "removeComments": false,
10     "noImplicitAny": false
11   },
12   "filesGlob": [
13     "**/*.ts",
14     "!node_modules/**"
15   ],
16   "exclude": [
17     "node_modules",
18     "typings/main",
19     "typings/main.d.ts"
20   ],
21   "compileOnSave": false,
22   "files": [
23     "angular/app/app.component.ts",
24     "angular/app/search.component.ts",
25     "angular/app/search.ts",
26     "angular/friends/services/friends.service.ts",
27     "angular/main.ts",
28     "angular/users/components/login/login.component.ts",
29     "angular/users/models/authStatus.ts",
30     "angular/users/models/token.ts",
31     "angular/users/models/user.ts",
32     "angular/users/services/auth.service.ts",
33     "angular/videos/components/add/videos-add.component.ts",
34     "angular/videos/components/list/sort.ts",
35     "angular/videos/components/list/video-miniature.component.ts",
36     "angular/videos/components/list/video-sort.component.ts",
37     "angular/videos/components/list/videos-list.component.ts",
38     "angular/videos/components/watch/videos-watch.component.ts",
39     "angular/videos/pagination.ts",
40     "angular/videos/video.ts",
41     "angular/videos/videos.service.ts",
42     "typings/globals/es6-shim/index.d.ts",
43     "typings/globals/jasmine/index.d.ts",
44     "typings/globals/node/index.d.ts",
45     "typings/index.d.ts"
46   ],
47   "atom": {
48     "rewriteTsconfig": true
49   }
50 }