]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blob - client/tsconfig.json
Add ability to search on followers/following
[github/Chocobozzz/PeerTube.git] / client / tsconfig.json
1 {
2 "compileOnSave": false,
3 "compilerOptions": {
4 "outDir": "./dist/out-tsc",
5 "sourceMap": true,
6 "declaration": false,
7 "moduleResolution": "node",
8 "emitDecoratorMetadata": true,
9 "experimentalDecorators": true,
10 "noImplicitAny": false,
11 "target": "es5",
12 "typeRoots": [
13 "node_modules/@types"
14 ],
15 "lib": [
16 "es2017",
17 "es2016",
18 "es2015",
19 "dom"
20 ],
21 "types": [
22 "jasmine"
23 ],
24 "baseUrl": "src",
25 "paths": {
26 "@app/*": [ "app/*" ],
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" ]
34 }
35 },
36 "angularCompilerOptions": {
37 "strictInjectionParameters": true,
38 "fullTemplateTypeCheck": true
39 },
40 "exclude": [
41 "../node_modules",
42 "node_modules",
43 "dist",
44 "../server",
45 "src/**/*.spec.ts"
46 ]
47 }