{
    "compilerOptions": {
        "target": "ESNext",
        "module": "NodeNext",
        "moduleResolution": "NodeNext",
        "types": [
            "jest",
            "node"
        ],
        "rootDir": ".",
        "allowJs": true,
        "resolveJsonModule": true,
        "esModuleInterop": true,
        "composite": true,
        "strict": false,
        "incremental": true,
        "declarationMap": true,
        "declaration": true,
        "declarationDir": "dist/types",
        "sourceMap": true,
        "skipLibCheck": true,
        "noErrorTruncation": true,
        "alwaysStrict": true,
        "noImplicitAny": false,
        "strictNullChecks": false,
        "strictPropertyInitialization": false,
        "useUnknownInCatchVariables": true,
        "strictFunctionTypes": true,
        "noImplicitThis": true,
        "strictBindCallApply": true,
        "noPropertyAccessFromIndexSignature": false,
        "noUncheckedIndexedAccess": true,
        "noImplicitReturns": false,
        "noImplicitOverride": true,
        "forceConsistentCasingInFileNames": true,
        "noFallthroughCasesInSwitch": true,
        "noUnusedLocals": false,
        "noUnusedParameters": false,
        "allowUnreachableCode": false,
        "allowUnusedLabels": false,
        "noImplicitUseStrict": false,
        "suppressExcessPropertyErrors": false,
        "suppressImplicitAnyIndexErrors": false,
        "noStrictGenericChecks": false
    },
    "include": [
        "**/*.ts" // *** The files TypeScript should type check ***
        ,
        "packages/ZorkinLibrary/jest.config.js"
    ],
    "typeRoots": [
        "./node_modules/@types"
    ],
    "types": [
        "node",
        "jest",
        "mocha"
    ],
    "exclude": [
        "node_modules",
        "**/node_modules",
        "dist"
    ]
}