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