{
    "extends": "@tsconfig/recommended/tsconfig.json",

    "compilerOptions": {
        "incremental": true,
        "target": "ES5",
        "lib": ["es2015", "dom"],
        "module": "CommonJS",
        "outDir": "dist",
        "allowJs": true,
        "strict": true,
        "noImplicitAny": false,
        "strictNullChecks": true,
        "strictBindCallApply": true,
        "noImplicitThis": true,
        "alwaysStrict": true,
        "noUnusedLocals": true,
        "noImplicitReturns": true,
        "noFallthroughCasesInSwitch": true,
        "resolveJsonModule": true,
        "moduleResolution": "node",
        "baseUrl": ".",
        "esModuleInterop": true,
        "experimentalDecorators": true,
        "emitDecoratorMetadata": true,
        "allowSyntheticDefaultImports": true,
        "downlevelIteration": true,
        "typeRoots": ["./node_modules/@types"]
    }
}
