Skip to content
Closed
Show file tree
Hide file tree
Changes from all 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
10 changes: 7 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,15 +6,17 @@
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"build": "tsc -p tsconfig.json",
"clean": "tsc --build tsconfig.json --clean",
"build": "tsc --build tsconfig.json",
"rebuild": "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",
"jest": "jest",
"lint": "eslint \"src/**/*.ts\"",
"precz": "npm t && npm run lint && npm run build",
"prettier": "prettier --write \"src/**/*.ts\"",
"preversion": "npm t && npm run lint && npm run build",
"preversion": "npm t && npm run lint && npm run rebuild",
"test": "jest",
"type-check": "tsc --pretty --noEmit",
"version": "npm run changelog"
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"]
}