Skip to content

Commit

Permalink
Merge pull request #13 from hammzj/dev/enable-for-js
Browse files Browse the repository at this point in the history
Dev/enable for js
  • Loading branch information
hammzj authored Apr 17, 2024
2 parents 83c6463 + c0ed9ef commit 02316ab
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 8 deletions.
8 changes: 4 additions & 4 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@hammzj/cypress-page-object",
"version": "2.0.4",
"version": "2.1.0",
"description": "A set of template classes and guides to help with developing component and page objects in Cypress.",
"author": "Zachary Hamm <zjhamm304+github@gmail.com>",
"license": "MIT",
Expand All @@ -19,10 +19,10 @@
"test",
"test automation"
],
"main": "index.ts",
"main": "build/dist/index.js",
"types": "build/dist/index.d.ts",
"files": [
"src/",
"index.ts",
"build/",
"LICENSE",
"README.md"
],
Expand Down
9 changes: 5 additions & 4 deletions tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -17,17 +17,18 @@
"jsx": "react",
"strict": false,
"rootDir": ".",
"outDir": "build/dist",
"outDir": "build/",
"noImplicitReturns": true,
"noImplicitThis": true,
"noImplicitAny": false,
"strictNullChecks": true,
"allowSyntheticDefaultImports": true
"allowSyntheticDefaultImports": true,
"esModuleInterop": true
},
"include": [
"src/**/*"
"src/**/*",
"index.ts"
],

"types": [
"typePatches"
]
Expand Down

0 comments on commit 02316ab

Please sign in to comment.