odin-js-fundamentals-part-4/node_modules/eslint-plugin-import/config/react-native.js

14 lines
289 B
JavaScript
Raw Normal View History

2024-01-05 19:30:21 +00: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'],
},
},
},
};