rn-shiki 0.0.27 → 0.0.28

Sign up to get free protection for your applications and to get access to all the features.
package/babel.config.js DELETED
@@ -1,22 +0,0 @@
1
- module.exports = function (api) {
2
- api.cache(true)
3
-
4
- return {
5
- presets: [
6
- 'module:metro-react-native-babel-preset',
7
- ],
8
- plugins: [
9
- [
10
- 'module-resolver',
11
- {
12
- root: ['./src'],
13
- extensions: ['.js', '.jsx', '.ts', '.tsx', '.json'],
14
- alias: {
15
- '@vendor': './src/vendor',
16
- 'vendor': './src/vendor',
17
- },
18
- },
19
- ],
20
- ],
21
- }
22
- }