defaultOptions.js 267 Bytes Raw Blame History Permalink 1 2 3 4 5 6 7 8 9 10 const path = require('path'); const defaultOptions = require('../../constants/defaultOptions'); /* * Default options for node worker */ module.exports = { ...defaultOptions, workerPath: path.join(__dirname, '..', '..', 'worker-script', 'node', 'index.js'), };