source: imaps-frontend/node_modules/node-addon-api/index.js

main
Last change on this file was 0c6b92a, checked in by stefan toskovski <stefantoska84@…>, 5 weeks ago

Pred finalna verzija

  • Property mode set to 100644
File size: 377 bytes
RevLine 
[0c6b92a]1const path = require('path');
2
3const includeDir = path.relative('.', __dirname);
4
5module.exports = {
6 include: `"${__dirname}"`, // deprecated, can be removed as part of 4.0.0
7 include_dir: includeDir,
8 gyp: path.join(includeDir, 'node_api.gyp:nothing'), // deprecated.
9 targets: path.join(includeDir, 'node_addon_api.gyp'),
10 isNodeApiBuiltin: true,
11 needsFlag: false
12};
Note: See TracBrowser for help on using the repository browser.