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