Skip to content

Commit

Permalink
feat(ignore): Enable incremental TSC builds (#774)
Browse files Browse the repository at this point in the history
  • Loading branch information
FabianMangold authored Oct 13, 2023
1 parent e6546f2 commit 764ab21
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 1 deletion.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -4,3 +4,4 @@ dist/
.idea
temp/
.remote-sync.json
tsconfig.tsbuildinfo
1 change: 1 addition & 0 deletions .npmignore
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@ coverage
.travis.yml
.jenkins.yml
.codeclimate.yml
tsconfig.tsbuildinfo

#linters
.jscsrc
Expand Down
4 changes: 3 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,9 @@
"test-with-coverage": "jest test --coverage --collectCoverageFrom 'src/**/*.ts'",
"test-watch": "jest test --watch",
"eslint": "node_modules/.bin/eslint . --ext .ts --max-warnings=0",
"docs": "typedoc --tsconfig typedoc-tsconfig.json"
"docs": "typedoc --tsconfig typedoc-tsconfig.json",
"clean": "rimraf temp coverage dist",
"prepack": "npm run clean && npm run build"
},
"version": "0.19.2",
"jest": {
Expand Down
1 change: 1 addition & 0 deletions tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@
"outDir": "dist",
"baseUrl": ".",
"resolveJsonModule": true,
"incremental": true
},
"include": [
"src/**/*.ts",
Expand Down

0 comments on commit 764ab21

Please sign in to comment.