@codecompose/typescript-config
Version:
Opinionated reusable TypeScript configurations
15 lines (14 loc) • 594 B
JSON
{
"$schema": "https://json.schemastore.org/tsconfig",
"display": "Monorepo shared React component library",
"extends": "./base.json",
"compilerOptions": {
"lib": ["dom", "dom.iterable", "esnext"],
"jsx": "react-jsx",
/* Required for project references, which provide go-to-definition in your
IDE without first having to build the module, which is essential during development. */
"composite": true
/* Assuming your bundler will output everything, but we can not have noEmit
enabled because it is not compatible with composite / project references */
}
}