{
  "compilerOptions": {
    "lib": ["ES2017", "ES2019", "ESNext"],
    "module": "esnext",
    "target": "esnext",
    "moduleResolution": "bundler",
    "moduleDetection": "force",
    "allowImportingTsExtensions": true,
    "noEmit": true,
    "composite": true,
    "strict": true,
    "downlevelIteration": true,
    "skipLibCheck": true,
    "jsx": "preserve",
    "allowSyntheticDefaultImports": true,
    "forceConsistentCasingInFileNames": true,
    "allowJs": true,
    "paths": {
      "toml-matter": ["./node_modules/toml-matter"]
    },
    "types": [
      "bun-types" // add Bun global
    ]
  }
}