{
  "$schema": "https://json.schemastore.org/tsconfig",
  "display": "@nozomiishii/tsconfig/tsconfig.lib.json",
  "extends": "./tsconfig.json",

  "compilerOptions": {
    // ----------------------------------------------------------------
    // Library Declaration emit
    // ----------------------------------------------------------------
    // .d.ts ファイルを生成する
    "declaration": true,

    // tsc 以外のツール (tsdown / tsup / rolldown-plugin-dts 等) で
    // .d.ts を並列生成可能にする。全ての export に明示的な型注釈を要求する
    // https://www.typescriptlang.org/tsconfig/isolatedDeclarations.html
    "isolatedDeclarations": true,

    // ----------------------------------------------------------------
    // Output
    // ----------------------------------------------------------------
    "outDir": "dist"
  }
}
