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