{
    "compilerOptions": {
        "incremental": true,
        "target": "ES6",
        "module": "ES2020",
        "lib": [
            "ESNext",
            "DOM"
        ],
        "rootDir": "./src",
        "outDir": "./esm",
        "declaration": true,
        "strict": true,
        "sourceMap": true,
        "moduleResolution": "node",
        "allowSyntheticDefaultImports": true,
        "esModuleInterop": true,
        "experimentalDecorators": true,
        "emitDecoratorMetadata": true
    },
    "exclude": [
        "./dist",
        "./test",
        "./binding/**/*.d.ts",
        "./diagnostics/**/*.d.ts",
        "./cache/**/*.d.ts",
        "./notify/**/*.d.ts",
        "./util/**/*.d.ts",
        "./esm/**/*.d.ts",
        "./*.d.ts"
    ]
}