aboutsummaryrefslogtreecommitdiffhomepage
path: root/tsconfig.json
blob: be910b309a00ed306741804874042e7f466452e0 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
{
  "compilerOptions": {
    "module": "commonjs",
    "target": "es5",
    "noImplicitAny": false,
    "sourceMap": false,
    "outDir": "./dist",
    "lib": [
      "dom",
      "es2015"
    ],
    "types": [
      "node"
    ]
  },
  "exclude": [
    "node_modules",
    "client"
  ]
}