index.js 296 B

1234567891011
  1. const path = require('path');
  2. const include_dir = path.relative('.', __dirname);
  3. module.exports = {
  4. include: `"${__dirname}"`, // deprecated, can be removed as part of 4.0.0
  5. include_dir,
  6. gyp: path.join(include_dir, 'node_api.gyp:nothing'),
  7. isNodeApiBuiltin: true,
  8. needsFlag: false
  9. };