Skip to content
Snippets Groups Projects
tsconfig.json 741 B
Newer Older
  • Learn to ignore specific revisions
  • François Agneray's avatar
    François Agneray committed
    {
      "compileOnSave": false,
      "compilerOptions": {
        "baseUrl": "./",
        "outDir": "./dist/out-tsc",
        "forceConsistentCasingInFileNames": true,
    
    François Agneray's avatar
    François Agneray committed
        "strict": false,
    
    François Agneray's avatar
    François Agneray committed
        "noImplicitReturns": true,
        "noFallthroughCasesInSwitch": true,
        "sourceMap": true,
        "declaration": false,
        "downlevelIteration": true,
        "experimentalDecorators": true,
        "moduleResolution": "node",
        "importHelpers": true,
        "target": "es2017",
        "module": "es2020",
        "lib": [
          "es2018",
          "dom"
        ]
      },
      "angularCompilerOptions": {
        "enableI18nLegacyMessageIdFormat": false,
        "strictInjectionParameters": true,
        "strictInputAccessModifiers": true,
    
    François Agneray's avatar
    François Agneray committed
        "strictTemplates": true,
        "strictDomEventTypes": false
    
    François Agneray's avatar
    François Agneray committed
      }
    }