]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blame - client/tsconfig.json
allow peertube-import-videos.ts CLI script to run concurrently (#1334)
[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",
6f4e2522
C
8 "emitDecoratorMetadata": true,
9 "experimentalDecorators": true,
244b4ae3
B
10 "noImplicitAny": true,
11 "suppressImplicitAnyIndexErrors":true,
5b3f86dd 12 "alwaysStrict": true,
63c4db6d
C
13 "target": "es5",
14 "typeRoots": [
15 "node_modules/@types"
ab32b0fc
C
16 ],
17 "lib": [
63c4db6d 18 "es2017",
920d2d2b
C
19 "es2016",
20 "es2015",
63c4db6d 21 "dom"
4cb6d457 22 ],
f2e05ffe
C
23 "types": [
24 "jasmine"
25 ],
4cb6d457
C
26 "baseUrl": "src",
27 "paths": {
6cca7360 28 "@app/*": [ "app/*" ],
3ea9a1c3
WL
29 "video.js": [ "../node_modules/video.js/dist/alt/video.core.js" ],
30 "fs": [ "./shims/noop" ],
31 "http": [ "./shims/http" ],
32 "https": [ "./shims/https" ],
33 "path": [ "./shims/path" ],
34 "stream": [ "./shims/noop" ],
35 "crypto": [ "./shims/noop" ]
4cb6d457 36 }
0b18f4aa 37 },
07524e22
C
38 "angularCompilerOptions": {
39 "strictInjectionParameters": true,
40 "fullTemplateTypeCheck": true
41 },
0b18f4aa
C
42 "exclude": [
43 "../node_modules",
44 "node_modules",
45 "dist",
f2e05ffe
C
46 "../server",
47 "src/**/*.spec.ts"
0b18f4aa 48 ]
6f4e2522 49}