Skip to content

Commit

Permalink
Fix types exports
Browse files Browse the repository at this point in the history
  • Loading branch information
lnbc1QWFyb24 committed Aug 6, 2022
1 parent e7e3bcc commit f6d4776
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,11 +3,11 @@
"version": "0.0.1",
"description": "Decode runes",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"build": "tsc",
"prepare": "npm run build"
},
"types": "dist/types",
"author": "Aaron Barnard",
"license": "MIT",
"devDependencies": {
Expand Down
4 changes: 3 additions & 1 deletion tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,9 @@
"target": "ESNext",
"module": "ESNext",
"sourceMap": true,
"outDir": "./dist",
"outDir": "dist",
"declaration": true,
"declarationDir": "dist",
"noImplicitAny": true,
"strict": true
},
Expand Down

0 comments on commit f6d4776

Please sign in to comment.