mirror of
https://github.com/nodejs/node.git
synced 2025-08-15 13:48:44 +02:00

PR-URL: https://github.com/nodejs/node/pull/57171 Reviewed-By: James M Snell <jasnell@gmail.com> Reviewed-By: Yagiz Nizipli <yagiz@nizipli.com>
7 lines
246 B
JavaScript
7 lines
246 B
JavaScript
// Flags: --expose-internals
|
|
|
|
import internal from 'internal/options';
|
|
import { writeFileSync } from 'fs';
|
|
|
|
const schema = internal.generateConfigJsonSchema();
|
|
writeFileSync('doc/node-config-schema.json', `${JSON.stringify(schema, null, 2)}\n`);
|