Skip to content
Snippets Groups Projects
tsconfig.json 612 B
Newer Older
  • Learn to ignore specific revisions
  • Giovannoni Laurent's avatar
    Giovannoni Laurent committed
    {
    
    Giovannoni Laurent's avatar
    Giovannoni Laurent committed
      "compilerOptions": {
    
        "baseUrl": "./",
        "outDir": "./dist/out-tsc",
        "sourceMap": true,
        "declaration": false,
        "downlevelIteration": true,
    
    Giovannoni Laurent's avatar
    Giovannoni Laurent committed
        "experimentalDecorators": true,
    
        "module": "esnext",
        "moduleResolution": "node",
        "importHelpers": true,
        "target": "es2015",
        "lib": [
          "es2018",
          "dom"
    
        ],
        "paths": {
          "@appRoot/*": [
            "./app/*"
          ],
          "@service/*": [
            "./service/*"
          ]
        }
    
      "angularCompilerOptions": {
        "fullTemplateTypeCheck": true,
        "strictInjectionParameters": true
      }