I am trying to transpile a set of js files.As babel by default operates in a strict mode,it outputs a syntax error whenever there is a conflict for example use of a delete keyword.The solution I am looking for is to somehow ignore this strict mode. Please note that I am doing above operation using babel cli and that there is no project set-up.
Edit: I am aware of how delete works in strict mode.The question is to use babel to operate in non-strict mode so that it won't give errors as by default it parses files as ES6 modules.