Skip to content
tsconfig.json 770 B
Newer Older
Maciej Hirsz's avatar
Maciej Hirsz committed
{
  "compilerOptions": {
    "allowSyntheticDefaultImports": true,
Maciej Hirsz's avatar
Maciej Hirsz committed
    "baseUrl": ".",
    "forceConsistentCasingInFileNames": true,
Maciej Hirsz's avatar
Maciej Hirsz committed
    "module": "commonjs",
    "moduleResolution": "node",
    "noEmitOnError": false,
    "noErrorTruncation": true,
    "noImplicitAny": true,
    "noImplicitReturns": true,
Maciej Hirsz's avatar
Maciej Hirsz committed
    "noImplicitThis": true,
    "outDir": "build",
    "pretty": true,
    "resolveJsonModule": true,
    "sourceMap": true,
Maciej Hirsz's avatar
Maciej Hirsz committed
    "strictNullChecks": true,
    "suppressImplicitAnyIndexErrors": true,
    "target": "es2017"
Maciej Hirsz's avatar
Maciej Hirsz committed
  },
  "typeRoots": [
    "./node_modules/@types"
  ],
  "exclude": [
    "node_modules"
  ],
  "include": [
    "./src/**/*.ts",
    "./src/**/*.json",
    "./config/**/*.json",
    "./config/**/*.ts",
Maciej Hirsz's avatar
Maciej Hirsz committed
    "./declarations/**/*.d.ts"
  ]
}