Skip to content
Closed
Show file tree
Hide file tree
Changes from 2 commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 6 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,9 @@
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"build": "tsc -p tsconfig.json",
"clean": "tsc --build tsconfig.json --clean",
"rebuild": "tsc --build tsconfig.json",
"build": "npm run clean && npm run rebuild",
"changelog": "conventional-changelog -p angular -i CHANGELOG.md -s && git add CHANGELOG.md",
"cover": "jest --coverage",
"format": "npm run prettier",
Expand Down Expand Up @@ -71,7 +73,9 @@
"src",
"LICENSE",
"README.md",
"CHANGELOG.md"
"!src/tests",
"!dist/tests",
"!dist/tsconfig.tsbuildinfo"
],
"jest": {
"coverageReporters": [
Expand Down
8 changes: 2 additions & 6 deletions tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -13,10 +13,6 @@
"outDir": "dist",
"sourceMap": true
},
"include": [
"src/**/*.ts"
],
"exclude": [
"node_modules"
]
"include": ["src/**/*.ts"],
"exclude": ["node_modules"]
}