]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blame - client/tsconfig.json
Add the list of files inside tsconfig
[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,
9 "removeComments": false,
10 "noImplicitAny": false
11 },
295ba044
C
12 "filesGlob": [
13 "**/*.ts",
14 "!node_modules/**"
15 ],
6f4e2522
C
16 "exclude": [
17 "node_modules",
18 "typings/main",
19 "typings/main.d.ts"
20 ],
295ba044
C
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 }
6f4e2522 45}