]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blame_incremental - client/tsconfig.json
Revert partially "Update client angular"
[github/Chocobozzz/PeerTube.git] / client / tsconfig.json
... / ...
CommitLineData
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 "strictBindCallApply": true,
17 "target": "es2015",
18 "typeRoots": [
19 "node_modules/@types"
20 ],
21 "lib": [
22 "es2018",
23 "dom"
24 ],
25 "baseUrl": "./",
26 "paths": {
27 "@app/*": [ "src/app/*" ],
28 "@shared/*": [ "../shared/*" ],
29 "fs": [ "src/shims/noop.ts" ],
30 "http": [ "src/shims/http.ts" ],
31 "https": [ "src/shims/https.ts" ],
32 "path": [ "src/shims/path.ts" ],
33 "stream": [ "src/shims/noop.ts" ],
34 "crypto": [ "src/shims/noop.ts" ]
35 }
36 },
37 "angularCompilerOptions": {
38 "strictInjectionParameters": true,
39 "fullTemplateTypeCheck": true,
40 "strictTemplates": true
41 }
42}