1.

Which of the following can be used to define an entry point?

Answer»

Which of the following can be used to DEFINE an entry point?
Choose the correct answer from below list
(1)module.exports = {
entry: './path/to/my/entry/file.js'
};
(2)module.exports = {
ADD.entry: './path/to/my/entry/file.js'
};
(3)module.imports = {
entry: './path/to/my/entry/file.js'
};
(4)module.imports = {
add: './path/to/my/entry/file.js'
};

Answer:-(1)module.exports = {
entry: './path/to/my/entry/file.js'
};



Discussion

No Comment Found