aboutsummaryrefslogtreecommitdiffstats
path: root/backend/tsconfig.json
blob: dfb5ddd3c0b92a9cf904514cb42fbd0eff507b37 (plain)
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
  {
    "compilerOptions": {
      "target": "es2016",
      "noImplicitAny": false,
      "strictNullChecks": true,
      "moduleResolution": "node",
      "allowSyntheticDefaultImports": true,
      "sourceMap": true,
      "outDir": "dist",
      "baseUrl": ".",
      "paths": {
        "*": [
          "node_modules/*",
          "src/*"
        ]
      },
      "typeRoots": [
        "./node_modules/@types",
        "./src/typings"
      ],
      "rootDirs": [
        "src/"
      ],
      "types": [
        "node"
      ]
    },
    "include": [
      "src/**/*"
    ]
  }