Skip to content
Snippets Groups Projects
tsconfig.json 807 B
{
  "compilerOptions": {
    "experimentalDecorators": true,
    "emitDecoratorMetadata": true,
    "moduleResolution": "node",
    "module": "esnext",
    "target": "es2020",
    "sourceMap": false,
    "baseUrl": ".",
    "paths": {
      "third_party/*" : ["third_party/*"],
      "src/*" : ["src/*"],
      "common/*": ["common/*"]
    },
    /**
    * related: https://github.com/storybookjs/storybook/issues/9241
    * related: https://stackoverflow.com/questions/63457043/error-ts2314-generic-type-modulewithproviderst-requires-1-type-arguments
    * if shedding storybookjs dev dependency, maybe shed this as well
    */
    "skipLibCheck": true
  },
  "angularCompilerOptions":{
    "fullTemplateTypeCheck": true,
    "strictInjectionParameters": true,
    "annotateForClosureCompiler" : true
  }
}