diff options
Diffstat (limited to 'client/tsconfig.json')
-rw-r--r-- | client/tsconfig.json | 87 |
1 files changed, 24 insertions, 63 deletions
diff --git a/client/tsconfig.json b/client/tsconfig.json index 67d1fb4f1..10573b8ee 100644 --- a/client/tsconfig.json +++ b/client/tsconfig.json | |||
@@ -3,74 +3,35 @@ | |||
3 | "target": "es5", | 3 | "target": "es5", |
4 | "module": "commonjs", | 4 | "module": "commonjs", |
5 | "moduleResolution": "node", | 5 | "moduleResolution": "node", |
6 | "sourceMap": true, | ||
7 | "emitDecoratorMetadata": true, | 6 | "emitDecoratorMetadata": true, |
8 | "experimentalDecorators": true, | 7 | "experimentalDecorators": true, |
9 | "noImplicitAny": false, | 8 | "allowSyntheticDefaultImports": true, |
10 | "noEmitHelpers": true | 9 | "sourceMap": true, |
10 | "noEmitHelpers": true, | ||
11 | "strictNullChecks": false, | ||
12 | "baseUrl": "./src", | ||
13 | "paths": [ | ||
14 | ], | ||
15 | "lib": [ | ||
16 | "dom", | ||
17 | "es6" | ||
18 | ], | ||
19 | "types": [ | ||
20 | "node", | ||
21 | "source-map", | ||
22 | "uglify-js", | ||
23 | "webpack" | ||
24 | ] | ||
11 | }, | 25 | }, |
26 | "exclude": [ | ||
27 | "node_modules", | ||
28 | "dist" | ||
29 | ], | ||
12 | "awesomeTypescriptLoaderOptions": { | 30 | "awesomeTypescriptLoaderOptions": { |
13 | "forkChecker": true | 31 | "forkChecker": true, |
32 | "useWebpackText": true | ||
14 | }, | 33 | }, |
15 | "compileOnSave": false, | 34 | "compileOnSave": false, |
16 | "buildOnSave": false, | 35 | "buildOnSave": false, |
17 | "atom": { | 36 | "atom": { "rewriteTsconfig": false } |
18 | "rewriteTsconfig": true | ||
19 | }, | ||
20 | "filesGlob": [ | ||
21 | "**/*.ts", | ||
22 | "!node_modules/**" | ||
23 | ], | ||
24 | "exclude": [ | ||
25 | "node_modules", | ||
26 | "typings/main", | ||
27 | "typings/main.d.ts" | ||
28 | ], | ||
29 | "files": [ | ||
30 | "src/app/app.component.ts", | ||
31 | "src/app/app.routes.ts", | ||
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", | ||
36 | "src/app/login/login.routes.ts", | ||
37 | "src/app/shared/auth/auth-http.service.ts", | ||
38 | "src/app/shared/auth/auth-status.model.ts", | ||
39 | "src/app/shared/auth/auth.service.ts", | ||
40 | "src/app/shared/auth/index.ts", | ||
41 | "src/app/shared/auth/user.model.ts", | ||
42 | "src/app/shared/index.ts", | ||
43 | "src/app/shared/search/index.ts", | ||
44 | "src/app/shared/search/search-field.type.ts", | ||
45 | "src/app/shared/search/search.component.ts", | ||
46 | "src/app/shared/search/search.model.ts", | ||
47 | "src/app/shared/search/search.service.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", | ||
65 | "src/app/videos/videos.component.ts", | ||
66 | "src/app/videos/videos.routes.ts", | ||
67 | "src/custom-typings.d.ts", | ||
68 | "src/main.ts", | ||
69 | "src/polyfills.ts", | ||
70 | "src/vendor.ts", | ||
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" | ||
75 | ] | ||
76 | } | 37 | } |