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