aboutsummaryrefslogblamecommitdiffhomepage
path: root/client/tsconfig.base.json
blob: f7d52f7f496dbb376f98eb94dee61abcad6cd33e (plain) (tree)
1
2
3
4
5
6
7
8
9








                               


































                                                           
                            
                                            

   
{
  "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,
    "strictBindCallApply": true,
    "target": "es2015",
    "typeRoots": [
      "node_modules/@types"
    ],
    "lib": [
      "es2018",
      "dom"
    ],
    "baseUrl": "./",
    "paths": {
      "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/noop.ts" ],
      "crypto": [ "src/shims/noop.ts" ]
    }
  },
  "angularCompilerOptions": {
    "strictInjectionParameters": true,
    "fullTemplateTypeCheck": true,
    "strictTemplates": true,
    "enableI18nLegacyMessageIdFormat": false
  }
}