{
    "compileOnSave": true,
    "compilerOptions": {
        "noImplicitReturns": true,
        "noFallthroughCasesInSwitch": true,
        "allowUnreachableCode": false,
        "allowUnusedLabels": false,
        "strict": true,
        "forceConsistentCasingInFileNames": true,
        "noUnusedLocals": true,
        // "diagnostics": true,
        // "listFiles": true,
        "strictNullChecks": false,
        "noImplicitAny" : true,
        "preserveSymlinks": true,
        "allowJs": true,
        "sourceMap": true,
        "declaration": true,
        // "declaration": true,
        // "declarationMap": true,
        // "inlineSourceMap": true,
        "inlineSources": true,
        "typeRoots": ["./node_modules/@types","./types"],
        "rootDir": "./",
        "target": "ES2018",
        "module": "commonjs",
        "moduleResolution": "node",
        "baseUrl": ".",
        "paths": {
            "*": [
                "./*"
              ],
        //     "test/*": [
        //         "./test/*"
        //       ]
        },
        "types": ["node","@types/fs-extra", "@types/long","mocha"],
        "allowSyntheticDefaultImports": true,
        "esModuleInterop": true,
        "experimentalDecorators": true,
        "emitDecoratorMetadata": true,
        "outDir": "./dist"
    },
    "include": [
        "./test/**/*.ts",
        "src/lib/**/*.ts", "index.ts"
    ]
}