summary refs log tree commit diff homepage
path: root/tsconfig.json
blob: 9070fb4fa14343f3e8cb1d01b8cfca5738ad53c8 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
{
  "compilerOptions": {
    "target": "es5",
    "lib": ["es2018", "esnext"],
    "allowJs": true,
    "esModuleInterop": true,
    "noImplicitAny": true,
    "noImplicitReturns": true,
    "removeComments": true,
    "strict": false,
    "strictNullChecks": true,
    "strictFunctionTypes": true,
    "downlevelIteration": true,
    "outDir": "build/",
    "moduleResolution": "node"
  },
  "include": ["./src/**/*", "./typings/**/*"],
  "exclude": ["node_modules"]
}