Is way to use nano-staged to run tsc
?
#19
-
My project consists of several packages (such as monorepo). Each has its own In my case, I don't care which exactly files have been modified: {
"packages/package1/**/*.ts": "tsc --noEmit -p packages/package1/tsconfig.json",
"packages/package2/**/*.ts": "tsc --noEmit -p packages/package2/tsconfig.json",
"packages/package3/**/*.ts": "tsc --noEmit -p packages/package3/tsconfig.json"
} When I tried I got error:
|
Beta Was this translation helpful? Give feedback.
Answered by
usmanyunusov
Dec 28, 2021
Replies: 2 comments 1 reply
-
After release |
Beta Was this translation helpful? Give feedback.
0 replies
Answer selected by
cawa-93
-
@cawa-93 Were you able to run type checking only in the changed packages? |
Beta Was this translation helpful? Give feedback.
1 reply
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
After release
JS API
, it will be possible to usetsc
.