]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blame - client/tsconfig.json
Add ability to subscribe from the channel account page
[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/*" ],
830b4faf 31 "@shared/*": [ "../../shared/*" ],
3ea9a1c3
WL
32 "video.js": [ "../node_modules/video.js/dist/alt/video.core.js" ],
33 "fs": [ "./shims/noop" ],
34 "http": [ "./shims/http" ],
35 "https": [ "./shims/https" ],
36 "path": [ "./shims/path" ],
37 "stream": [ "./shims/noop" ],
38 "crypto": [ "./shims/noop" ]
4cb6d457 39 }
0b18f4aa 40 },
07524e22
C
41 "angularCompilerOptions": {
42 "strictInjectionParameters": true,
43 "fullTemplateTypeCheck": true
44 },
830b4faf 45 "include": [
c4710631 46 "./src",
830b4faf
C
47 "../../shared"
48 ],
0b18f4aa 49 "exclude": [
830b4faf 50 "../../node_modules",
0b18f4aa 51 "../node_modules",
830b4faf
C
52 "../dist",
53 "../../server",
54 "../src/**/*.spec.ts"
0b18f4aa 55 ]
6f4e2522 56}