๐Ÿ“ฆ antongolub / release-testing-2

๐Ÿ“„ tsconfig.base.json ยท 28 lines
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{
  "compilerOptions": {
    "lib": ["esnext"],
    "noImplicitAny": true,
    "noEmitHelpers": true,
    "noUnusedLocals": true,
    "noUnusedParameters": true,
    "importHelpers": true,
    "allowSyntheticDefaultImports": true,
    "skipLibCheck": false,
    "resolveJsonModule": true,
    "strictNullChecks": true,
    "experimentalDecorators": true,
    "emitDecoratorMetadata": true,
    "downlevelIteration": true,

    "module": "commonjs",
    "declaration": true,
    "sourceMap": true,
    "strict": true,
    "target": "es5",

    "esModuleInterop": true,
    "composite": true,
    "incremental": true
  }
}