File tree 2 files changed +13
-16
lines changed
2 files changed +13
-16
lines changed Original file line number Diff line number Diff line change 1
1
{
2
2
"name" : " react-native-dynamic-search-bar" ,
3
- "version" : " 2.0.1 " ,
3
+ "version" : " 2.0.2 " ,
4
4
"description" : " Fully customizable and dynamic Search Bar for React Native." ,
5
5
"keywords" : [
6
6
" gradient" ,
47
47
"husky" : " ^7.0.0" ,
48
48
"lint-staged" : " ^12.0.3" ,
49
49
"prettier" : " ^2.1.2"
50
- },
51
- "husky" : {
52
- "hooks" : {
53
- "pre-commit" : " lint-staged"
54
- }
55
- },
56
- "lint-staged" : {
57
- "./src/*.{js,jsx,ts,tsx}" : [
58
- " npx prettier --write" ,
59
- " eslint src/*.js --fix-dry-run"
60
- ]
61
50
}
62
51
}
Original file line number Diff line number Diff line change 1
1
{
2
2
"compilerOptions" : {
3
3
"target" : " esnext" ,
4
- "module" : " commonjs " ,
4
+ "module" : " es6 " ,
5
5
"lib" : [" es6" ],
6
6
"allowJs" : true ,
7
7
"jsx" : " react-native" ,
10
10
"isolatedModules" : true ,
11
11
"strict" : true ,
12
12
"moduleResolution" : " node" ,
13
- "skipLibCheck" : true ,
14
13
"baseUrl" : " ./" ,
15
14
"outDir" : " build/dist" ,
16
15
"noEmitHelpers" : true ,
17
- "importHelpers" : true ,
16
+ "alwaysStrict" : true ,
17
+ "strictFunctionTypes" : true ,
18
+ "resolveJsonModule" : true ,
19
+ "importHelpers" : false ,
18
20
"experimentalDecorators" : true ,
21
+ "strictPropertyInitialization" : false ,
19
22
"allowSyntheticDefaultImports" : true ,
23
+ "strictNullChecks" : true ,
24
+ "skipDefaultLibCheck" : true ,
25
+ "skipLibCheck" : true ,
20
26
"esModuleInterop" : true ,
27
+ "typeRoots" : [" ./node_modules/@types" , " ./@types" ],
21
28
"declaration" : true /* Generates corresponding '.d.ts' file. */ ,
22
29
"sourceMap" : true /* Generates corresponding '.map' file. */
23
30
},
24
31
"exclude" : [
25
32
" example" ,
33
+ " example-manual-state" ,
26
34
" node_modules" ,
27
35
" babel.config.js" ,
28
36
" metro.config.js" ,
29
37
" jest.config.js"
30
38
]
31
- }
39
+ }
You can’t perform that action at this time.
0 commit comments