Skip to content

Commit

Permalink
Fix pkg exports
Browse files Browse the repository at this point in the history
  • Loading branch information
philipjames44 committed Apr 14, 2024
1 parent a0f5932 commit 794df0f
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 3 deletions.
5 changes: 3 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,10 +1,11 @@
{
"name": "boring-vault-ui",
"version": "1.0.1",
"version": "1.0.2",
"description": "A reusable package to quickly integrate boring vaults onto a UI.",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"build": "tsup",
"build": "echo Running tsc && tsc",
"test": "jest",
"dev": "webpack --mode production && webpack serve --mode development --open"
},
Expand Down
4 changes: 3 additions & 1 deletion tsconfig.json
Original file line number Diff line number Diff line change
@@ -1,18 +1,20 @@
{
"compilerOptions": {
"outDir": "./dist",
"target": "es5",
"lib": ["dom", "dom.iterable", "esnext"],
"allowJs": true,
"skipLibCheck": true,
"esModuleInterop": true,
"allowSyntheticDefaultImports": true,
"declaration": true,
"strict": true,
"forceConsistentCasingInFileNames": true,
"module": "esnext",
"moduleResolution": "node",
"resolveJsonModule": true,
"isolatedModules": true,
"noEmit": true, // keep as true if you're only using TypeScript for type-checking
"noEmit": false, // Change this line to false to enable file emission
"jsx": "react-jsx"
},
"include": ["src/**/*"], // include all files in src
Expand Down

0 comments on commit 794df0f

Please sign in to comment.