]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blame - client/tsconfig.base.json
Translated using Weblate (French (France) (fr_FR))
[github/Chocobozzz/PeerTube.git] / client / tsconfig.base.json
CommitLineData
583eb04b
C
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",
583eb04b
C
10 "experimentalDecorators": true,
11 "noImplicitAny": true,
12 "noImplicitThis": true,
13 "suppressImplicitAnyIndexErrors":true,
14 "alwaysStrict": true,
15 "importHelpers": 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 "video.js": [ "node_modules/video.js/core" ],
28 "@app/*": [ "src/app/*" ],
29 "@shared/models/*": [ "../shared/models/*" ],
30 "@shared/models": [ "../shared/models" ],
31 "@shared/core-utils": [ "../shared/core-utils" ],
32 "@shared/core-utils/*": [ "../shared/core-utils/*" ],
33 "@root-helpers/*": [ "src/root-helpers/*" ],
34 "fs": [ "src/shims/noop.ts" ],
35 "http": [ "src/shims/http.ts" ],
36 "https": [ "src/shims/https.ts" ],
37 "path": [ "src/shims/path.ts" ],
38 "stream": [ "src/shims/noop.ts" ],
39 "crypto": [ "src/shims/noop.ts" ]
40 }
41 },
42 "angularCompilerOptions": {
43 "strictInjectionParameters": true,
44 "fullTemplateTypeCheck": true,
2245e3df 45 "strictTemplates": true,
cedbdbfe 46 "enableI18nLegacyMessageIdFormat": false
583eb04b
C
47 }
48}