Skip to content

Commit

Permalink
add clean
Browse files Browse the repository at this point in the history
  • Loading branch information
mcasimir committed Aug 25, 2021
1 parent c5cd98f commit 0a3f08a
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 3 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
"lint": "eslint .",
"depcheck": "depcheck .",
"check": "npm run lint && npm run depcheck",
"clean": "rimraf lib",
"clean": "git clean --force -X --exclude node_modules",
"precompile": "npm run clean",
"compile": "npm run compile-ts",
"compile-ts": "tsc -p tsconfig.json",
Expand Down
3 changes: 1 addition & 2 deletions tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -9,10 +9,9 @@
"module": "commonjs",
"removeComments": true,
"skipLibCheck": true,
"sourceMap": true,
"strict": true,
"target": "es2018"
},
"include": ["**/*"],
"exclude": ["./src/**/*.spec.*"]
"exclude": ["./src/**/*.spec.*", "./src/fixtures"]
}

0 comments on commit 0a3f08a

Please sign in to comment.