0

我正在处理的项目中有一个模型,我更愿意使用它而不是自动生成的模型。设置两者languageSpecificPrimitives并按typeMappings预期更改生成的代码。

但是,我只是无法让导入映射工作。也找不到任何关于如何使它们工作的文档。这是我用于 clibatch命令的 yaml 文件,

inputSpec: openapi.yaml
outputDir: generated
generatorName: typescript-fetch
typeMappings:
  User: ApiUser
languageSpecificPrimitives:
  - User
importMappings:
  User: "src/User.ts"
  ApiUser: "src/User.ts"
additionalProperties:
  supportsES6: "true"
  typescriptThreePlus: "true"

的所有导入路径User仍然是./(指向生成代码的索引)。如何使用importMappings指向我的模型?

4

0 回答 0