|
3 | 3 | /* Basic Options */ |
4 | 4 | "target": "esnext" /* Specify ECMAScript target version: 'ES3' (default), 'ES5', 'ES2015', 'ES2016', 'ES2017','ES2018' or 'ESNEXT'. */, |
5 | 5 | "module": "commonjs" /* Specify module code generation: 'none', 'commonjs', 'amd', 'system', 'umd', 'es2015', or 'ESNext'. */, |
6 | | - "lib": [ |
7 | | - "es2017" |
8 | | - ] /* Specify library files to be included in the compilation. */, |
| 6 | + "lib": ["es2017"] /* Specify library files to be included in the compilation. */, |
9 | 7 | "allowJs": true /* Allow javascript files to be compiled. */, |
10 | 8 | // "checkJs": true, /* Report errors in .js files. */ |
11 | 9 | "jsx": "react-native" /* Specify JSX code generation: 'preserve', 'react-native', or 'react'. */, |
|
41 | 39 | "baseUrl": "./" /* Base directory to resolve non-absolute module names. */, |
42 | 40 | // "paths": {}, /* A series of entries which re-map imports to lookup locations relative to the 'baseUrl'. */ |
43 | 41 | "paths": { |
44 | | - "@uiw/react-native": ["node_modules/@uiw/react-native/src/index"] |
| 42 | + "@uiw/react-native": ["node_modules/@uiw/react-native/src/index"], |
| 43 | + "@uiw/react-native-image-picker": ["node_modules/@uiw/react-native-image-picker/src/index"] |
45 | 44 | }, |
46 | 45 | // "rootDirs": [], /* List of root folders whose combined content represents the structure of the project at runtime. */ |
47 | 46 | // "typeRoots": [], /* List of folders to include type definitions from. */ |
|
61 | 60 | // "experimentalDecorators": true, /* Enables experimental support for ES7 decorators. */ |
62 | 61 | // "emitDecoratorMetadata": true, /* Enables experimental support for emitting type metadata for decorators. */ |
63 | 62 | }, |
64 | | - "exclude": [ |
65 | | - "node_modules", |
66 | | - "babel.config.js", |
67 | | - "metro.config.js", |
68 | | - "jest.config.js" |
69 | | - ] |
| 63 | + "exclude": ["node_modules", "babel.config.js", "metro.config.js", "jest.config.js"] |
70 | 64 | } |
0 commit comments