]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blob - client/tsconfig.json
add feeds to the openapi spec
[github/Chocobozzz/PeerTube.git] / client / tsconfig.json
1 {
2 "compileOnSave": false,
3 "compilerOptions": {
4 "downlevelIteration": true,
5 "outDir": "./dist/out-tsc",
6 "sourceMap": true,
7 "declaration": false,
8 "moduleResolution": "node",
9 "module": "esnext",
10 "emitDecoratorMetadata": true,
11 "experimentalDecorators": true,
12 "noImplicitAny": true,
13 "noImplicitThis": true,
14 "suppressImplicitAnyIndexErrors":true,
15 "alwaysStrict": true,
16 "importHelpers": true,
17 "strictBindCallApply": true,
18 "target": "es2015",
19 "typeRoots": [
20 "node_modules/@types"
21 ],
22 "lib": [
23 "es2018",
24 "dom"
25 ],
26 "baseUrl": "./",
27 "paths": {
28 "video.js": [ "node_modules/video.js/core" ],
29 "@app/*": [ "src/app/*" ],
30 "@shared/*": [ "../shared/*" ],
31 "fs": [ "src/shims/noop.ts" ],
32 "http": [ "src/shims/http.ts" ],
33 "https": [ "src/shims/https.ts" ],
34 "path": [ "src/shims/path.ts" ],
35 "stream": [ "src/shims/noop.ts" ],
36 "crypto": [ "src/shims/noop.ts" ]
37 }
38 },
39 "angularCompilerOptions": {
40 "strictInjectionParameters": true,
41 "fullTemplateTypeCheck": true,
42 "strictTemplates": true
43 }
44 }