]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blame - client/tsconfig.json
HLS is only supported by ffmpeg 4
[github/Chocobozzz/PeerTube.git] / client / tsconfig.json
CommitLineData
6f4e2522 1{
63c4db6d 2 "compileOnSave": false,
6f4e2522 3 "compilerOptions": {
63c4db6d
C
4 "outDir": "./dist/out-tsc",
5 "sourceMap": true,
6 "declaration": false,
6f4e2522 7 "moduleResolution": "node",
4348a27d 8 "module": "esnext",
6f4e2522
C
9 "emitDecoratorMetadata": true,
10 "experimentalDecorators": true,
244b4ae3 11 "noImplicitAny": true,
951ef829 12 "noImplicitThis": true,
244b4ae3 13 "suppressImplicitAnyIndexErrors":true,
5b3f86dd 14 "alwaysStrict": true,
63c4db6d
C
15 "target": "es5",
16 "typeRoots": [
17 "node_modules/@types"
ab32b0fc
C
18 ],
19 "lib": [
63c4db6d 20 "es2017",
920d2d2b
C
21 "es2016",
22 "es2015",
63c4db6d 23 "dom"
4cb6d457 24 ],
f2e05ffe
C
25 "types": [
26 "jasmine"
27 ],
4cb6d457
C
28 "baseUrl": "src",
29 "paths": {
6cca7360 30 "@app/*": [ "app/*" ],
3ea9a1c3
WL
31 "video.js": [ "../node_modules/video.js/dist/alt/video.core.js" ],
32 "fs": [ "./shims/noop" ],
33 "http": [ "./shims/http" ],
34 "https": [ "./shims/https" ],
35 "path": [ "./shims/path" ],
36 "stream": [ "./shims/noop" ],
37 "crypto": [ "./shims/noop" ]
4cb6d457 38 }
0b18f4aa 39 },
07524e22
C
40 "angularCompilerOptions": {
41 "strictInjectionParameters": true,
42 "fullTemplateTypeCheck": true
43 },
0b18f4aa
C
44 "exclude": [
45 "../node_modules",
46 "node_modules",
47 "dist",
f2e05ffe
C
48 "../server",
49 "src/**/*.spec.ts"
0b18f4aa 50 ]
6f4e2522 51}