Skip to content

Commit

Permalink
Merge pull request #21 from 10play/types-fix-2
Browse files Browse the repository at this point in the history
Fix for native types
  • Loading branch information
17Amir17 authored Feb 7, 2024
2 parents bcbfc5b + 1539413 commit aecdae7
Showing 1 changed file with 5 additions and 3 deletions.
8 changes: 5 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,16 +4,18 @@
"description": "React Native Rich Text Editor",
"main": "lib/commonjs/index",
"module": "lib/module/index",
"types": "lib/typescript/index.d.ts",
"types": "lib/typescript/src/index.d.ts",
"react-native": "src/index",
"exports": {
".": {
"import": "./lib/module/index",
"require": "./lib/commonjs/index"
"require": "./lib/commonjs/index",
"types": "./lib/typescript/src/index.d.ts"
},
"./web": {
"import": "./lib-web/index.mjs",
"require": "./lib-web/index.umd.cjs"
"require": "./lib-web/index.umd.cjs",
"types": "./lib/typescript/src/index.d.ts"
}
},
"source": "src/index",
Expand Down

0 comments on commit aecdae7

Please sign in to comment.