Skip to content

Commit

Permalink
NPM-2: Correctly include package code.
Browse files Browse the repository at this point in the history
  • Loading branch information
dereckmezquita committed Sep 3, 2024
1 parent c2ddee3 commit 6aba83d
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 2 deletions.
6 changes: 5 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,11 @@
"name": "@ts-statscript/microbenchmark",
"version": "0.0.2",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"files": [
"dist/**/*",
"src/**/*"
],
"repository": {
"type": "git",
"url": "https://github.com/ts-statscript/microbenchmark.git"
Expand All @@ -20,7 +25,6 @@
"format": "prettier --write .",
"test": "jest"
},
"files": ["dist/**/*"],
"prettier": {
"semi": true,
"trailingComma": "none",
Expand Down
2 changes: 1 addition & 1 deletion tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -107,5 +107,5 @@
"skipLibCheck": true /* Skip type checking all .d.ts files. */
},
"include": ["src/**/*.ts"],
"exclude": ["node_modules"]
"exclude": ["node_modules", "**/*.test.ts"]
}

0 comments on commit 6aba83d

Please sign in to comment.