print console in adobe mesh api
Hi,
I am using adobe mesh api & created mesh.json. I am running on my local. I want to console/debug the value passing from parent to child and for that i have added console.log in ./additional-resolvers.js. getting below error on run:
Error: LintError in File ./additional-resolvers.js: Unexpected console statement. , 'console' is not defined.
Hence use below lines to disable eslint
1)
// eslint-disable-next-line no-console
const resolvers = {}
2) Created eslintrc.js at project root dir with
module.exports = {
// other configurations...
rules: {
'no-console': 'off', // Allow console statements
},
};
3) eslint-disable-next-line no-console on console log statement
4) console.log('phrase value', phrase);// eslint-disable-line
But no luck...
Anybody can help me here?

