]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blame - client/tsconfig.json
Fix broken replay with long live video name
[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",
eaa52952 9 "module": "es2020",
1d4591fd
C
10 "experimentalDecorators": true,
11 "noImplicitAny": true,
12 "noImplicitThis": true,
1d4591fd
C
13 "alwaysStrict": true,
14 "importHelpers": true,
8b03e2ce 15 "allowSyntheticDefaultImports": true,
1d4591fd 16 "strictBindCallApply": true,
838950fd 17 "target": "ES2022",
1d4591fd
C
18 "typeRoots": [
19 "node_modules/@types"
20 ],
21 "lib": [
f228e9f0 22 "ES2021.Intl",
1d4591fd
C
23 "es2018",
24 "es2017",
25 "es2016",
26 "es2015",
27 "dom"
28 ],
29 "baseUrl": "./",
30 "paths": {
838950fd
C
31 "hls.js": [
32 "node_modules/hls.js/dist/hls.light"
33 ],
34 "video.js": [
35 "node_modules/video.js/core"
36 ],
37 "@app/*": [
38 "src/app/*"
39 ],
40 "@shared/models/*": [
41 "../shared/models/*"
42 ],
43 "@shared/models": [
44 "../shared/models"
45 ],
46 "@shared/core-utils": [
47 "../shared/core-utils"
48 ],
49 "@shared/core-utils/*": [
50 "../shared/core-utils/*"
51 ],
52 "@shared/typescript-utils": [
53 "../shared/typescript-utils"
54 ],
55 "@shared/typescript-utils/*": [
56 "../shared/typescript-utils/*"
57 ],
58 "@root-helpers/*": [
59 "src/root-helpers/*"
60 ],
61 "fs": [
62 "src/shims/noop.ts"
63 ],
64 "http": [
65 "src/shims/http.ts"
66 ],
67 "https": [
68 "src/shims/https.ts"
69 ],
70 "path": [
71 "src/shims/path.ts"
72 ],
73 "stream": [
74 "src/shims/stream.ts"
75 ],
76 "crypto": [
77 "src/shims/noop.ts"
78 ]
79 },
80 "useDefineForClassFields": false
1d4591fd
C
81 },
82 "files": [
83 "src/polyfills.ts"
84 ],
85 "include": [
86 "src/main*.ts",
87 "src/**/*.d.ts",
88 "src/shims/*.ts"
89 ],
90 "exclude": [
91 "../node_modules",
9df52d66
C
92 "../server",
93 "node_modules"
1d4591fd
C
94 ],
95 "angularCompilerOptions": {
96 "strictInjectionParameters": true,
97 "fullTemplateTypeCheck": true,
98 "strictTemplates": true,
99 "enableI18nLegacyMessageIdFormat": false
100 }
6f4e2522 101}