github-pages-deploy-action/node_modules/eslint-plugin-import/config/react-native.js
2020-03-06 22:45:40 -05:00

14 lines
288 B
JavaScript

/**
* - 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'],
},
},
},
}