File tree Expand file tree Collapse file tree 2 files changed +29
-0
lines changed Expand file tree Collapse file tree 2 files changed +29
-0
lines changed Original file line number Diff line number Diff line change 25
25
"lint:fix" : " eslint src -c .eslintrc.js --fix" ,
26
26
"lint:test" : " mocha --compilers js:babel-core/register eslint-rules/tests/lib/rules" ,
27
27
"xcode" : " open ./ios/uilib.xcodeproj" ,
28
+ "build:dev" : " tsc --p tsconfig.dev.json" ,
28
29
"build" : " tsc --p tsconfig.build.json" ,
29
30
"log" : " react-native log-ios | grep 'ethan -'" ,
30
31
"docs:install" : " (cd ./uilib-docs && rm -rf node_modules && rm -rf package-lock.json && npm install)" ,
Original file line number Diff line number Diff line change
1
+ {
2
+ "compilerOptions" : {
3
+ "target" : " ESNext" ,
4
+ "module" : " ESNext" ,
5
+ // "outDir": "dist",
6
+ "esModuleInterop" : true ,
7
+ "moduleResolution" : " node" ,
8
+ "jsx" : " react-native" ,
9
+ "skipLibCheck" : true ,
10
+ // "resolveJsonModule": true,
11
+ "strict" : true ,
12
+ "noUnusedLocals" : true ,
13
+ "noUnusedParameters" : true ,
14
+ // "noEmit": true,
15
+ // "checkJs": true,
16
+ "allowJs" : false ,
17
+ "emitDeclarationOnly" : true ,
18
+ // "noImplicitAny": false
19
+ "declaration" : true ,
20
+ "declarationDir" : " ./generatedTypes" ,
21
+ "baseUrl" : " ." ,
22
+ "paths" : {
23
+ "react-native-ui-lib" : [" index.d.ts" ]
24
+ }
25
+ },
26
+ "include" : [" src/**/*" , " typings/**/*" ],
27
+ "exclude" : [ " node_modules" , " src/index.ts" ]
28
+ }
You can’t perform that action at this time.
0 commit comments