aboutsummaryrefslogtreecommitdiffhomepage
path: root/client/tsconfig.json
blob: d68b3058e6f41662916117a42d08519d3fff961b (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
{
  "compileOnSave": false,
  "compilerOptions": {
    "downlevelIteration": true,
    "outDir": "./dist/out-tsc",
    "sourceMap": true,
    "declaration": false,
    "moduleResolution": "node",
    "module": "esnext",
    "experimentalDecorators": true,
    "noImplicitAny": true,
    "noImplicitThis": true,
    "suppressImplicitAnyIndexErrors":true,
    "alwaysStrict": true,
    "importHelpers": true,
    "allowSyntheticDefaultImports": true,
    "strictBindCallApply": true,
    "target": "es2015",
    "typeRoots": [
      "node_modules/@types"
    ],
    "lib": [
      "es2018",
      "es2017",
      "es2016",
      "es2015",
      "dom"
    ],
    "baseUrl": "./",
    "paths": {
      "hls.js": [ "node_modules/hls.js/dist/hls.light" ],
      "video.js": [ "node_modules/video.js/core" ],
      "@app/*": [ "src/app/*" ],
      "@shared/models/*": [ "../shared/models/*" ],
      "@shared/models": [ "../shared/models" ],
      "@shared/core-utils": [ "../shared/core-utils" ],
      "@shared/core-utils/*": [ "../shared/core-utils/*" ],
      "@root-helpers/*": [ "src/root-helpers/*" ],
      "fs": [ "src/shims/noop.ts" ],
      "http": [ "src/shims/http.ts" ],
      "https": [ "src/shims/https.ts" ],
      "path": [ "src/shims/path.ts" ],
      "stream": [ "src/shims/stream.ts" ],
      "crypto": [ "src/shims/noop.ts" ]
    }
  },
  "files": [
    "src/polyfills.ts"
  ],
  "include": [
    "src/main*.ts",
    "src/**/*.d.ts",
    "src/shims/*.ts"
  ],
  "exclude": [
    "../node_modules",
    "../server",
    "node_modules"
  ],
  "angularCompilerOptions": {
    "strictInjectionParameters": true,
    "fullTemplateTypeCheck": true,
    "strictTemplates": true,
    "enableI18nLegacyMessageIdFormat": false
  }
}