Skip to content

Commit

Permalink
fix: Types not found after install
Browse files Browse the repository at this point in the history
  • Loading branch information
Danielku15 committed Feb 10, 2024
1 parent ba96ce3 commit 71171fc
Showing 1 changed file with 9 additions and 3 deletions.
12 changes: 9 additions & 3 deletions lib/node/alphaskia/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,15 @@
"name": "@coderline/alphaskia",
"version": "2.0.0",
"description": "A Skia based rendering backend for alphaTab.",
"module": "dist/alphaskia.mjs",
"typings": "dist/alphaskia.d.ts",
"exports": "./dist/alphaskia.mjs",
"module": "./dist/alphaskia.mjs",
"typings": "./dist/alphaskia.d.ts",
"exports": {
".": {
"import": "./dist/alphaskia.mjs",
"require": "./dist/alphaskia.min.js",
"types": "./dist/alphaskia.d.ts"
}
},
"engines": {
"node": ">=18.0.0"
},
Expand Down

0 comments on commit 71171fc

Please sign in to comment.