UNPKG

eslint-plugin-i

Version:

A fork of `eslint-plugin-import` using `get-tsconfig` to replace `tsconfig-paths` and heavy `typescript` under the hood.

14 lines (13 loc) 289 B
/** * - adds platform extensions to Node resolver */ module.exports = { settings: { 'import/resolver': { node: { // Note: will not complain if only _one_ of these files exists. extensions: ['.js', '.web.js', '.ios.js', '.android.js'], }, }, }, };