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