X-Git-Url: https://git.immae.eu/?a=blobdiff_plain;f=client%2Ftsconfig.json;h=e2d61851e6b8cf24f70314cad4897520677015b4;hb=66af9ee16d5b61bb707f359b750b25f2faff306c;hp=df46b5d46b0f09b82cf91a823b085760400e3bc5;hpb=471bc22f19767c1cb1e7ba7ad0ddf0ff5f0e88f4;p=github%2FChocobozzz%2FPeerTube.git diff --git a/client/tsconfig.json b/client/tsconfig.json index df46b5d46..e2d61851e 100644 --- a/client/tsconfig.json +++ b/client/tsconfig.json @@ -6,8 +6,16 @@ "sourceMap": true, "emitDecoratorMetadata": true, "experimentalDecorators": true, - "removeComments": false, - "noImplicitAny": false + "noImplicitAny": false, + "noEmitHelpers": true + }, + "awesomeTypescriptLoaderOptions": { + "forkChecker": true + }, + "compileOnSave": false, + "buildOnSave": false, + "atom": { + "rewriteTsconfig": true }, "filesGlob": [ "**/*.ts", @@ -18,31 +26,57 @@ "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/video-miniature.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", + "src/app/account/account.component.ts", + "src/app/account/account.routes.ts", + "src/app/account/account.service.ts", + "src/app/account/index.ts", + "src/app/app.component.ts", + "src/app/app.routes.ts", + "src/app/friends/friend.service.ts", + "src/app/friends/index.ts", + "src/app/login/index.ts", + "src/app/login/login.component.ts", + "src/app/login/login.routes.ts", + "src/app/shared/auth/auth-http.service.ts", + "src/app/shared/auth/auth-status.model.ts", + "src/app/shared/auth/auth.service.ts", + "src/app/shared/auth/index.ts", + "src/app/shared/auth/user.model.ts", + "src/app/shared/index.ts", + "src/app/shared/search/index.ts", + "src/app/shared/search/search-field.type.ts", + "src/app/shared/search/search.component.ts", + "src/app/shared/search/search.model.ts", + "src/app/shared/search/search.service.ts", + "src/app/shared/user/index.ts", + "src/app/shared/user/user.service.ts", + "src/app/videos/index.ts", + "src/app/videos/shared/index.ts", + "src/app/videos/shared/loader/index.ts", + "src/app/videos/shared/loader/loader.component.ts", + "src/app/videos/shared/pagination.model.ts", + "src/app/videos/shared/sort-field.type.ts", + "src/app/videos/shared/video.model.ts", + "src/app/videos/shared/video.service.ts", + "src/app/videos/video-add/index.ts", + "src/app/videos/video-add/video-add.component.ts", + "src/app/videos/video-list/index.ts", + "src/app/videos/video-list/video-list.component.ts", + "src/app/videos/video-list/video-miniature.component.ts", + "src/app/videos/video-list/video-sort.component.ts", + "src/app/videos/video-watch/index.ts", + "src/app/videos/video-watch/video-watch.component.ts", + "src/app/videos/video-watch/webtorrent.service.ts", + "src/app/videos/videos.component.ts", + "src/app/videos/videos.routes.ts", + "src/custom-typings.d.ts", + "src/main.ts", + "src/polyfills.ts", + "src/vendor.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 - } + ] }