When running npx openapi with only the input file in the config file, it throws error saying that folder already exists. I noticed that it doesn't throw when I change execSync(`mkdir -p ${pathOutputDir}`); to execSync(`mkdir ${pathOutputDir}`); so I think that's a problem with the option, since I'm working on Windows...