X-Git-Url: https://git.immae.eu/?a=blobdiff_plain;ds=sidebyside;f=client%2Ftsconfig.json;h=fdcf742ea09cba4ca8541687c50ac505f0f927ba;hb=e822fdaeee90cb7c70d5678f19249198cd7aae8c;hp=fac9da116edc3811116793c9895c24d086af8dfb;hpb=295ba044afc394ef51dac22263063670362787ec;p=github%2FChocobozzz%2FPeerTube.git diff --git a/client/tsconfig.json b/client/tsconfig.json index fac9da116..fdcf742ea 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,28 +26,46 @@ "typings/main", "typings/main.d.ts" ], - "compileOnSave": false, "files": [ - "angular/app/app.component.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/video.ts", - "angular/videos/videos.service.ts", + "src/app/app.component.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/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/users/auth-status.model.ts", + "src/app/shared/users/auth.service.ts", + "src/app/shared/users/index.ts", + "src/app/shared/users/token.model.ts", + "src/app/shared/users/user.model.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/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 - } + ] }