Skip to content

Commit

Permalink
fix: provide proper typings for axe-cli (#559)
Browse files Browse the repository at this point in the history
  • Loading branch information
michael-siek authored Aug 30, 2022
1 parent a47100c commit e4ccfa5
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
2 changes: 1 addition & 1 deletion packages/cli/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
},
"license": "MPL-2.0",
"main": "dist/src/lib/index.js",
"typings": "dist/src/types.js",
"typings": "dist/src/types.d.ts",
"bin": {
"axe": "./dist/src/bin/cli.js"
},
Expand Down
3 changes: 2 additions & 1 deletion packages/cli/tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,8 @@
"allowJs": true,
"lib": ["dom", "es2015", "esnext.asynciterable"],
"esModuleInterop": true,
"skipLibCheck": true
"skipLibCheck": true,
"declaration": true
},
"include": ["./src/lib", "./src/bin"]
}

0 comments on commit e4ccfa5

Please sign in to comment.