{
    "compilerOptions": {
        "allowJs": false,
        "allowSyntheticDefaultImports": true,
        "allowUnreachableCode": false,
        "allowUnusedLabels": false,
        "alwaysStrict": true,
        "declaration": true,
        "declarationDir": "./dist/types",
        "disableSizeLimit": true,
        "esModuleInterop": false,
        "forceConsistentCasingInFileNames": true,
        // "importsNotUsedAsValues": "error",
        "inlineSourceMap": false,
        "inlineSources": true,
        // "isolatedModules": true,
        "jsx": "preserve",
        "jsxImportSource": "woby",
        "lib": [
            "dom",
            "esnext",
            "WebWorker"
        ],
        "module": "esnext",
        "moduleResolution": "node",
        "newLine": "lf",
        "noEmitOnError": false,
        "noImplicitThis": true,
        "noPropertyAccessFromIndexSignature": false,
        "noUnusedLocals": false,
        "noUnusedParameters": false,
        "outDir": "dist",
        "pretty": true,
        "skipDefaultLibCheck": true,
        "skipLibCheck": true,
        "sourceMap": true,
        "strict": true,
        "strictBindCallApply": true,
        "strictFunctionTypes": true,
        "strictNullChecks": false,
        "target": "es2020",
        "useDefineForClassFields": false,
        "useUnknownInCatchVariables": true,
        "noImplicitAny": false,
        "noUncheckedIndexedAccess": false,
        "baseUrl": ".",
        "rootDir": "./src",
        "typeRoots": [
            "types"
        ],
        // "tsBuildInfoFile": "./dist/tsconfig.tsbuildinfo",
        // "composite": true,
    },
    "exclude": [
        "node_modules",
        "vite.*.*ts",
        "./index.tsx",
        "dist*"
    ]
}