我正在处理的项目中有一个模型,我更愿意使用它而不是自动生成的模型。设置两者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
指向我的模型?