Skip to content

Commit

Permalink
add typesversions for playwright
Browse files Browse the repository at this point in the history
  • Loading branch information
ndelangen committed May 13, 2024
1 parent 99501d2 commit ce5fc53
Show file tree
Hide file tree
Showing 3 changed files with 30 additions and 0 deletions.
10 changes: 10 additions & 0 deletions code/renderers/react/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -41,6 +41,16 @@
"main": "dist/index.js",
"module": "dist/index.mjs",
"types": "dist/index.d.ts",
"typesVersions": {
"*": {
"*": [
"dist/index.d.ts"
],
"experimental-playwright": [
"dist/playwright.d.ts"
]
}
},
"files": [
"dist/**/*",
"template/cli/**/*",
Expand Down
10 changes: 10 additions & 0 deletions code/renderers/svelte/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -44,6 +44,16 @@
"main": "dist/index.js",
"module": "dist/index.mjs",
"types": "dist/index.d.ts",
"typesVersions": {
"*": {
"*": [
"dist/index.d.ts"
],
"experimental-playwright": [
"dist/playwright.d.ts"
]
}
},
"files": [
"dist/**/*",
"template/cli/**/*",
Expand Down
10 changes: 10 additions & 0 deletions code/renderers/vue3/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -40,6 +40,16 @@
"main": "dist/index.js",
"module": "dist/index.mjs",
"types": "dist/index.d.ts",
"typesVersions": {
"*": {
"*": [
"dist/index.d.ts"
],
"experimental-playwright": [
"dist/playwright.d.ts"
]
}
},
"files": [
"dist/**/*",
"template/cli/**/*",
Expand Down

0 comments on commit ce5fc53

Please sign in to comment.