/ tsconfig.json
tsconfig.json
 1  {
 2      "compilerOptions": {
 3          "lib": ["ESNext"],
 4          "module": "commonjs",
 5          "moduleResolution": "node",
 6          "target": "ESNext",
 7          "outDir": "dist",
 8          "sourceMap": false,
 9          "esModuleInterop": true,
10          "experimentalDecorators": true,
11          "emitDecoratorMetadata": true,
12          "allowSyntheticDefaultImports": true,
13          "skipLibCheck": true,
14          "skipDefaultLibCheck": true,
15          "resolveJsonModule": true,
16          "importHelpers": true,
17          "allowJs": true
18      },
19      "include": ["src", "environment.d.ts"],
20      "exclude": ["node_modules", "**/*.spec.ts"]
21  }