inital commit
This commit is contained in:
12
metro.config.js
Normal file
12
metro.config.js
Normal file
@@ -0,0 +1,12 @@
|
||||
const path = require('path');
|
||||
|
||||
module.exports = {
|
||||
resolver: {
|
||||
extraNodeModules: new Proxy({}, {
|
||||
get: (target, name) => path.join(process.cwd(), `src/${name}`)
|
||||
}),
|
||||
},
|
||||
watchFolders: [
|
||||
path.resolve(__dirname, 'src')
|
||||
],
|
||||
};
|
||||
Reference in New Issue
Block a user