microsoft/typespec
Publicmirrored from https://github.com/microsoft/typespecAvailable
packages/compiler/src/index.ts
9lines · modecode
| 1 | export { ResolveCompilerOptionsOptions, resolveCompilerOptions } from "./config/index.js"; |
| 2 | export * from "./core/index.js"; |
| 3 | export * from "./lib/decorators.js"; |
| 4 | export * from "./server/index.js"; |
| 5 | import * as formatter from "./formatter/index.js"; |
| 6 | export const TypeSpecPrettierPlugin = formatter; |
| 7 | |
| 8 | /** @deprecated Use TypeSpecPrettierPlugin */ |
| 9 | export const CadlPrettierPlugin = TypeSpecPrettierPlugin; |
| 10 | |