Skip to content

Commit

Permalink
Mark cid lib as composite in tsconfig
Browse files Browse the repository at this point in the history
  • Loading branch information
kyleect committed Sep 15, 2023
1 parent 3c31e8c commit db291cb
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 2 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -5,3 +5,4 @@ coverage
*.tgz
.DS_Store
.turbo
*.tsbuildinfo
3 changes: 2 additions & 1 deletion packages/lib/tsconfig.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
{
"extends": "../../tsconfig.base.json",
"compilerOptions": {
"types": ["vitest/globals"]
"types": ["vitest/globals"],
"composite": true
}
}
2 changes: 1 addition & 1 deletion turbo.json
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
"inputs": ["src/**/*.ts", "spec/**/*.scm"]
},
"typecheck": {
"inputs": ["src/**/*[!.test].ts"]
"inputs": ["src/**/*[!.test].ts", "tsconfig.json"]
},
"coverage": {
"outputs": ["coverage/**"]
Expand Down

0 comments on commit db291cb

Please sign in to comment.