]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blame - client/tsconfig.base.json
Add support for saving video files to object storage (#4290)
[github/Chocobozzz/PeerTube.git] / client / tsconfig.base.json
CommitLineData
583eb04b
C
1{
2 "compileOnSave": false,
3 "compilerOptions": {
4 "downlevelIteration": true,
5 "outDir": "./dist/out-tsc",
6 "sourceMap": true,
7 "declaration": false,
8 "moduleResolution": "node",
9 "module": "esnext",
583eb04b
C
10 "experimentalDecorators": true,
11 "noImplicitAny": true,
12 "noImplicitThis": true,
13 "suppressImplicitAnyIndexErrors":true,
14 "alwaysStrict": true,
15 "importHelpers": true,
16 "strictBindCallApply": true,
17 "target": "es2015",
18 "typeRoots": [
19 "node_modules/@types"
20 ],
21 "lib": [
22 "es2018",
23 "dom"
24 ],
25 "baseUrl": "./",
26 "paths": {
134006b0 27 "hls.js": [ "node_modules/hls.js/dist/hls.light" ],
583eb04b
C
28 "video.js": [ "node_modules/video.js/core" ],
29 "@app/*": [ "src/app/*" ],
30 "@shared/models/*": [ "../shared/models/*" ],
31 "@shared/models": [ "../shared/models" ],
32 "@shared/core-utils": [ "../shared/core-utils" ],
33 "@shared/core-utils/*": [ "../shared/core-utils/*" ],
34 "@root-helpers/*": [ "src/root-helpers/*" ],
35 "fs": [ "src/shims/noop.ts" ],
36 "http": [ "src/shims/http.ts" ],
37 "https": [ "src/shims/https.ts" ],
38 "path": [ "src/shims/path.ts" ],
134006b0 39 "stream": [ "src/shims/stream.ts" ],
583eb04b
C
40 "crypto": [ "src/shims/noop.ts" ]
41 }
42 },
43 "angularCompilerOptions": {
44 "strictInjectionParameters": true,
45 "fullTemplateTypeCheck": true,
2245e3df 46 "strictTemplates": true,
cedbdbfe 47 "enableI18nLegacyMessageIdFormat": false
583eb04b
C
48 }
49}