Neutrino middleware for eslint with typescript support
npm install @kotify/neutrino-typescript-eslintAdds typescript support for eslint 6.x and typescript 3.x.
Middleware accepts options eslint options object that will be merged with base options.
Example:
``
const typescriptEslint = require('neutrino-typescript-eslint');
module.exports = {
use: [
react(),
eslint(),
typescriptEslint({}, {react: true, reactVersion: '16.13'}),
]
}
``