{
	"$schema": "https://json.schemastore.org/tsconfig",
	"extends": "./tsconfig.json",
	"compilerOptions": {
		"lib": ["ESNext", "DOM", "DOM.Iterable"],
		// Empty rather than absent: absent auto-includes every @types package in node_modules, which in a
		// monorepo hands a browser package the whole tooling surface. Add what you need explicitly.
		"types": [],
		// Inert for a package with no .tsx — set here so a browser package that grows one needs no config change.
		"jsx": "react-jsx"
	}
}
