Skip to content

Commit

Permalink
Merge pull request #123 from nearform/fix/no_type_import
Browse files Browse the repository at this point in the history
Fix/no type import
  • Loading branch information
Ademsk1 authored Nov 6, 2023
2 parents 2412c6d + 5a27ba6 commit b4b509c
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
"files": [
"dist/**/*"
],
"types": "./dist/typings/index.d.ts",
"types": "./dist/index.d.ts",
"scripts": {
"lint": "eslint \"*.{ts,tsx}\"",
"prepare": "husky install && npm run build",
Expand Down
3 changes: 2 additions & 1 deletion tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,8 @@
"esModuleInterop": true,
"forceConsistentCasingInFileNames": true,
"strict": true,
"skipLibCheck": true
"skipLibCheck": true,
"declaration": true
},
"exclude": ["node_modules", "playwright.config.ts", "tests", "example"],
"include": ["./index.ts", "./plugin"]
Expand Down

0 comments on commit b4b509c

Please sign in to comment.