Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
quarto-dev
GitHub Repository: quarto-dev/quarto-cli
Path: blob/main/src/resources/conf/jsx-runtime.ts
12925 views
1
// this is clearly a fake jsx runtime, we use it simply to other appease `deno check`
2
// this also means that our typechecks for TSX might be more lax than we wanted.
3
// We'll improve over time.
4
5
// deno-lint-ignore-file
6
export namespace JSX {
7
export type IntrinsicElements = { [key: string]: unknown };
8
}
9
10