]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blob - client/tsconfig.json
d68b3058e6f41662916117a42d08519d3fff961b
[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 "experimentalDecorators": true,
11 "noImplicitAny": true,
12 "noImplicitThis": true,
13 "suppressImplicitAnyIndexErrors":true,
14 "alwaysStrict": true,
15 "importHelpers": true,
16 "allowSyntheticDefaultImports": true,
17 "strictBindCallApply": true,
18 "target": "es2015",
19 "typeRoots": [
20 "node_modules/@types"
21 ],
22 "lib": [
23 "es2018",
24 "es2017",
25 "es2016",
26 "es2015",
27 "dom"
28 ],
29 "baseUrl": "./",
30 "paths": {
31 "hls.js": [ "node_modules/hls.js/dist/hls.light" ],
32 "video.js": [ "node_modules/video.js/core" ],
33 "@app/*": [ "src/app/*" ],
34 "@shared/models/*": [ "../shared/models/*" ],
35 "@shared/models": [ "../shared/models" ],
36 "@shared/core-utils": [ "../shared/core-utils" ],
37 "@shared/core-utils/*": [ "../shared/core-utils/*" ],
38 "@root-helpers/*": [ "src/root-helpers/*" ],
39 "fs": [ "src/shims/noop.ts" ],
40 "http": [ "src/shims/http.ts" ],
41 "https": [ "src/shims/https.ts" ],
42 "path": [ "src/shims/path.ts" ],
43 "stream": [ "src/shims/stream.ts" ],
44 "crypto": [ "src/shims/noop.ts" ]
45 }
46 },
47 "files": [
48 "src/polyfills.ts"
49 ],
50 "include": [
51 "src/main*.ts",
52 "src/**/*.d.ts",
53 "src/shims/*.ts"
54 ],
55 "exclude": [
56 "../node_modules",
57 "../server",
58 "node_modules"
59 ],
60 "angularCompilerOptions": {
61 "strictInjectionParameters": true,
62 "fullTemplateTypeCheck": true,
63 "strictTemplates": true,
64 "enableI18nLegacyMessageIdFormat": false
65 }
66 }