X-Git-Url: https://git.immae.eu/?a=blobdiff_plain;f=client%2Ftsconfig.json;h=6ac5e6a9e46e261a05e32c4c36607e4bcb1bb99b;hb=cf7a61b5a2b68fd966c4a355e37e84b048ed296b;hp=d48bd392009b206313a4e51e2cd6b41a422cd91d;hpb=41a2aee38cf812510010da09de9bae53590ec119;p=github%2FChocobozzz%2FPeerTube.git diff --git a/client/tsconfig.json b/client/tsconfig.json index d48bd3920..6ac5e6a9e 100644 --- a/client/tsconfig.json +++ b/client/tsconfig.json @@ -1,63 +1,38 @@ { + "compileOnSave": false, "compilerOptions": { - "target": "es5", - "module": "commonjs", - "moduleResolution": "node", + "outDir": "./dist/out-tsc", "sourceMap": true, + "declaration": false, + "moduleResolution": "node", "emitDecoratorMetadata": true, "experimentalDecorators": true, - "removeComments": false, - "noImplicitAny": false + "target": "es5", + "typeRoots": [ + "node_modules/@types" + ], + "lib": [ + "es2017", + "es2016", + "es2015", + "dom" + ], + "baseUrl": "src", + "paths": { + "@app/*": [ "app/*" ], + "video.js": [ "../node_modules/video.js/dist/alt/video.core.js" ], + "fs": [ "./shims/noop" ], + "http": [ "./shims/http" ], + "https": [ "./shims/https" ], + "path": [ "./shims/path" ], + "stream": [ "./shims/noop" ], + "crypto": [ "./shims/noop" ] + } }, - "filesGlob": [ - "**/*.ts", - "!node_modules/**" - ], "exclude": [ + "../node_modules", "node_modules", - "typings/main", - "typings/main.d.ts" - ], - "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", - "main.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 - } + "dist", + "../server" + ] }