]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blame - client/tsconfig.json
Don't manage remote channels
[github/Chocobozzz/PeerTube.git] / client / tsconfig.json
CommitLineData
6f4e2522 1{
1d4591fd
C
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,
8b03e2ce 16 "allowSyntheticDefaultImports": true,
1d4591fd
C
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/*" ],
f304a158
C
38 "@shared/typescript-utils": [ "../shared/typescript-utils" ],
39 "@shared/typescript-utils/*": [ "../shared/typescript-utils/*" ],
1d4591fd
C
40 "@root-helpers/*": [ "src/root-helpers/*" ],
41 "fs": [ "src/shims/noop.ts" ],
42 "http": [ "src/shims/http.ts" ],
43 "https": [ "src/shims/https.ts" ],
44 "path": [ "src/shims/path.ts" ],
45 "stream": [ "src/shims/stream.ts" ],
46 "crypto": [ "src/shims/noop.ts" ]
4cb6d457 47 }
1d4591fd
C
48 },
49 "files": [
50 "src/polyfills.ts"
51 ],
52 "include": [
53 "src/main*.ts",
54 "src/**/*.d.ts",
55 "src/shims/*.ts"
56 ],
57 "exclude": [
58 "../node_modules",
9df52d66
C
59 "../server",
60 "node_modules"
1d4591fd
C
61 ],
62 "angularCompilerOptions": {
63 "strictInjectionParameters": true,
64 "fullTemplateTypeCheck": true,
65 "strictTemplates": true,
66 "enableI18nLegacyMessageIdFormat": false
67 }
6f4e2522 68}