X-Git-Url: https://git.immae.eu/?a=blobdiff_plain;f=client%2Ftsconfig.json;h=66c7bb4443a9f60fecf74c229a02487ae8352642;hb=f47bf2e142b0b22460558e23720f5aed8deb982c;hp=24583f6c3e57168a8c54da3178a5c8f5c553aa02;hpb=d3ef341abe8fb890a085189f5e4d0a5bd38d0172;p=github%2FChocobozzz%2FPeerTube.git diff --git a/client/tsconfig.json b/client/tsconfig.json index 24583f6c3..66c7bb444 100644 --- a/client/tsconfig.json +++ b/client/tsconfig.json @@ -3,64 +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": [ - "app/app.component.ts", - "app/friends/friend.service.ts", - "app/friends/index.ts", - "app/shared/index.ts", - "app/shared/search-field.type.ts", - "app/shared/search.component.ts", - "app/shared/search.model.ts", - "app/users/index.ts", - "app/users/login/index.ts", - "app/users/login/login.component.ts", - "app/users/shared/auth-status.model.ts", - "app/users/shared/auth.service.ts", - "app/users/shared/index.ts", - "app/users/shared/token.model.ts", - "app/users/shared/user.model.ts", - "app/videos/index.ts", - "app/videos/shared/index.ts", - "app/videos/shared/loader/index.ts", - "app/videos/shared/loader/loader.component.ts", - "app/videos/shared/pagination.model.ts", - "app/videos/shared/sort-field.type.ts", - "app/videos/shared/video.model.ts", - "app/videos/shared/video.service.ts", - "app/videos/video-add/index.ts", - "app/videos/video-add/video-add.component.ts", - "app/videos/video-list/index.ts", - "app/videos/video-list/video-list.component.ts", - "app/videos/video-list/video-miniature.component.ts", - "app/videos/video-list/video-sort.component.ts", - "app/videos/video-watch/index.ts", - "app/videos/video-watch/video-watch.component.ts", - "app/videos/video-watch/webtorrent.service.ts", - "main.ts", - "typings/globals/es6-shim/index.d.ts", - "typings/globals/jasmine/index.d.ts", - "typings/globals/jquery.fileupload/index.d.ts", - "typings/globals/jquery/index.d.ts", - "typings/globals/node/index.d.ts", - "typings/index.d.ts" - ], - "atom": { - "rewriteTsconfig": true - } + "buildOnSave": false, + "atom": { "rewriteTsconfig": false } }