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