blob: c3d2f77bd874aed1cddd7dc94a2f749779467050 [file] [log] [blame]
const defaultParserOptions = {
ecmaVersion: 2018,
ecmaFeatures: {
experimentalObjectRestSpread: true,
jsx: true,
},
};
export default function parserOptionsMapper({
code,
errors,
options = [],
parserOptions = {},
}) {
return {
code,
errors,
options,
parserOptions: {
...defaultParserOptions,
...parserOptions,
},
};
}