-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.bcr-config.js
More file actions
28 lines (28 loc) · 880 Bytes
/
.bcr-config.js
File metadata and controls
28 lines (28 loc) · 880 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
// This file is used for development of this package.
// Do NOT copy-paste this file for use in your own projects
module.exports = {
options: {
NativeNoRedux: {
path: "src/nativeNoRedux",
template: "reactNativeNoRedux",
},
NativeWithRedux: {
path: "src/nativeWithRedux",
template: "reactNativeWithRedux",
},
WebNoRedux: {
path: "src/webNoRedux",
template: "reactWebNoRedux",
},
WebWithRedux: {
path: "src/webWithRedux",
template: "reactWebWithRedux",
},
ReduxDomain: {
path: "src/store",
template: "reduxDomain",
additionalInstructions:
"Don't forget to add your domain to the `src/store/rootReducer.ts` file and the StoreState type",
},
},
};