(jsonObject: object)
| 106 | } |
| 107 | |
| 108 | function createModuleTextFromJson(jsonObject: object) { |
| 109 | return success(`import { ${typeName} } from './schema';\nconst json: ${typeName} = ${JSON.stringify(jsonObject, undefined, 2)};\n`); |
| 110 | } |
| 111 | |
| 112 | function createProgramFromModuleText(moduleText: string, oldProgram?: ts.Program) { |
| 113 | const fileMap = new Map([ |