Skip to content

Commit

Permalink
build: add ts incremental compilation
Browse files Browse the repository at this point in the history
js type checking seems to be slower than ts. :)
  • Loading branch information
aladdin-add committed Aug 4, 2023
1 parent 9ed6129 commit 902a784
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -7,3 +7,4 @@ npm-debug.log
*.iml
.cache
.sublimelinterrc
tsconfig.tsbuildinfo
3 changes: 2 additions & 1 deletion tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,8 @@
"allowJs": true,
"checkJs": true,
"declaration": true,
"noEmit": true
"noEmit": true,
"incremental": true
},
"include": ["lib/", "tests/index.spec.js"]
}

0 comments on commit 902a784

Please sign in to comment.