aboutsummaryrefslogtreecommitdiffstats
path: root/tsconfig.json
blob: b86d0ec6e165d9c4ed6cca2528f0cd23d09375de (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
{
  "compilerOptions": {
    "module": "commonjs",
    "target": "es5",
    "lib": [ "es2015", "dom" ],
    "outDir": "lib",
    "sourceMap": true,
    "declaration": true,
    "noImplicitAny": true,
    "strictNullChecks": true
  },
  "include": [
    "./src/**/*",
    "./test/**/*",
    "./node_modules/web3-typescript-typings/index.d.ts"
  ]
}