astro-ghostcms/.pnpm-store/v3/files/9f/cb9425b2940c81501d51c75e6a7...

14 lines
289 B
Plaintext
Raw Permalink Normal View History

2024-02-14 14:10:47 +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'],
},
},
},
};