Constnium/node_modules/eslint-plugin-import/config/react-native.js

14 lines
289 B
JavaScript
Raw Normal View History

2022-06-23 02:27:43 +02:00
/**
* - 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'],
},
},
},
};