Skip to content

Commit

Permalink
use transpiled esm for app bundles (#302)
Browse files Browse the repository at this point in the history
  • Loading branch information
shamilovtim committed May 6, 2024
1 parent 6cd031f commit 5012754
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 2 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
"main": "lib/commonjs/index",
"module": "lib/module/index",
"types": "lib/typescript/src/index.d.ts",
"react-native": "src/index",
"react-native": "lib/module/index",
"source": "src/index",
"files": [
"src",
Expand Down
5 changes: 4 additions & 1 deletion tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,10 @@
"skipLibCheck": true,
"strict": true,
"target": "esnext",
"verbatimModuleSyntax": true
"verbatimModuleSyntax": true,
"declaration": true,
"declarationMap": true,
"sourceMap": true
},
"include": [
"src",
Expand Down

0 comments on commit 5012754

Please sign in to comment.