All @lilith/* packages should publish to forge.nasty.sh only. 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
13 lines
289 B
JavaScript
13 lines
289 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'],
|
|
},
|
|
},
|
|
},
|
|
};
|