tsconfig.json 1 KB
Newer Older
CED SA's avatar
CED SA committed
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
{
  "compileOnSave": false,
  "compilerOptions": {
    "baseUrl": "./projects/paf-wc/src/app/",
    "outDir": "./dist/out-tsc",
    "sourceMap": false,
    "declaration": false,
    "moduleResolution": "node",
    "emitDecoratorMetadata": true,
    "experimentalDecorators": true,
    "module": "ES2020",
    "target": "ES2019",
    "typeRoots": [
      "node_modules/@types"
    ],
    "lib": [
      "es2019",
      "es2018",
      "dom"
    ],
    "resolveJsonModule": true,
    "esModuleInterop": true,
    "allowSyntheticDefaultImports": true,
    "types": [
      "node"
    ],
    "paths": {
      "*": [
        "node_modules/*"
      ]
    },
    "importHelpers": true,
    "noEmitHelpers": false,
    "incremental": true,
    "forceConsistentCasingInFileNames": true,
    "skipLibCheck": true,
    "downlevelIteration": true
  },
  "exclude": [
    "node_modules/*"
  ],
  "angularCompilerOptions": {
    "disableTypeScriptVersionCheck": true,
    "fullTemplateTypeCheck": false,
    "preserveWhitespaces": false
  }
}