Skip to content

Commit

Permalink
chore(tsconfig): Remove tests from build output
Browse files Browse the repository at this point in the history
  • Loading branch information
heythisispaul committed Sep 27, 2020
1 parent c66bf75 commit 0564e3f
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 @@ -4,7 +4,7 @@
"description": "An Unofficial, (mostly) typed Node SDK that wraps around Ellie Mae's Encompass RESTful API.",
"main": "dist/index.js",
"module": "dist/index.es.js",
"types": "dist/src/index.d.ts",
"types": "dist/index.d.ts",
"scripts": {
"test": "jest",
"posttest": "eslint",
Expand Down
3 changes: 2 additions & 1 deletion tsconfig.json
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
{
"extends": "@tsconfig/node12/tsconfig.json"
"extends": "@tsconfig/node12/tsconfig.json",
"exclude": ["__tests__"]
}

0 comments on commit 0564e3f

Please sign in to comment.