{
    "compilerOptions": {
        "target": "esnext",
        "module": "esnext",
        "lib": [ "esnext" ],
        "outDir": "./dist",
        "moduleResolution": "bundler",
        "jsx": "react",
        "jsxFactory": "h",
        "jsxFragmentFactory": "Fragment",
        "skipLibCheck": false,
        "strictNullChecks": true,
        "forceConsistentCasingInFileNames": true,
        "declaration": true,
        "typeRoots": [ ],
    },
    "include": [
        "./**/*"
    ],
    "exclude": [
        "./node_modules",
        "./dist",
        "./typings.d.ts"
    ]
}