X-Git-Url: https://git.immae.eu/?a=blobdiff_plain;ds=sidebyside;f=client%2Ftsconfig.json;h=66c7bb4443a9f60fecf74c229a02487ae8352642;hb=908f6e5e38e85cc0debab0051b7fa34b13025f96;hp=270524e5f5dc0833414a6069e51775747db49fdd;hpb=cf20596c107eb0833259fa1098cc784267298a19;p=github%2FChocobozzz%2FPeerTube.git diff --git a/client/tsconfig.json b/client/tsconfig.json index 270524e5f..66c7bb444 100644 --- a/client/tsconfig.json +++ b/client/tsconfig.json @@ -3,48 +3,30 @@ "target": "es5", "module": "commonjs", "moduleResolution": "node", - "sourceMap": true, "emitDecoratorMetadata": true, "experimentalDecorators": true, - "removeComments": false, - "noImplicitAny": false + "allowSyntheticDefaultImports": true, + "sourceMap": true, + "noEmitHelpers": true, + "importHelpers": true, + "strictNullChecks": false, + "baseUrl": "./src", + "paths": [ + ], + "lib": [ + "dom", + "es6" + ] }, - "filesGlob": [ - "**/*.ts", - "!node_modules/**" - ], "exclude": [ "node_modules", - "typings/main", - "typings/main.d.ts" + "dist" ], + "awesomeTypescriptLoaderOptions": { + "forkChecker": true, + "useWebpackText": true + }, "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 - } + "buildOnSave": false, + "atom": { "rewriteTsconfig": false } }