Sha256: b3f53b1cc4af1055fd929140f6084fea6027a7e22bcd3385c3f13f2d2e4bc6d9
Contents?: true
Size: 415 Bytes
Versions: 37
Compression:
Stored size: 415 Bytes
Contents
/** * Adds `.jsx` as an extension, and enables JSX parsing. * * Even if _you_ aren't using JSX (or .jsx) directly, if your dependencies * define jsnext:main and have JSX internally, you may run into problems * if you don't enable these settings at the top level. */ module.exports = { settings: { 'import/extensions': ['.js', '.jsx'], }, parserOptions: { ecmaFeatures: { jsx: true }, }, };
Version data entries
37 entries across 37 versions & 2 rubygems