()
| 244 | * @returns {string} |
| 245 | */ |
| 246 | export function getDevNodeOptions() { |
| 247 | const { NODE_OPTIONS } = process.env |
| 248 | const enableSourceMapsOption = '--enable-source-maps' |
| 249 | |
| 250 | if (!NODE_OPTIONS) { |
| 251 | return enableSourceMapsOption |
| 252 | } |
| 253 | |
| 254 | if (NODE_OPTIONS.includes(enableSourceMapsOption)) { |
| 255 | return NODE_OPTIONS |
| 256 | } |
| 257 | |
| 258 | return `${NODE_OPTIONS} ${enableSourceMapsOption}` |
| 259 | } |
no outgoing calls
no test coverage detected