inital commit

This commit is contained in:
2023-10-12 23:45:46 +03:00
parent 9b16b14a4c
commit 6bcc0fd3cc
86 changed files with 13784 additions and 34 deletions

12
metro.config.js Normal file
View 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')
],
};