| 87 | } |
| 88 | |
| 89 | interface JSRConfig { |
| 90 | name: string; |
| 91 | version: string; |
| 92 | exports: { [entrypoint: string]: string }; |
| 93 | publish: { |
| 94 | exclude: ReadonlyArray<string>; |
| 95 | }; |
| 96 | } |
| 97 | |
| 98 | async function writeJSRConfig( |
| 99 | outDir: string, |
nothing calls this directly
no outgoing calls
no test coverage detected