mirror of
https://github.com/cocos/cocos-engine.git
synced 2026-09-07 00:02:53 +08:00
7 lines
264 B
JavaScript
7 lines
264 B
JavaScript
const { execSync } = require('child_process');
|
|
const { join } = require('path');
|
|
|
|
const input = join(__dirname, 'types.ts');
|
|
const output = join(__dirname, 'schema.json');
|
|
execSync(`typescript-json-schema ${input} ModuleRenderConfig -o ${output} --noExtraProps`);
|