how to setup type checking for typescript files

i'm trying to run a vanilla typescript project and I'm not sure if type-checking is just on by default or if i have to configure it explicitly. Can I route the output of `tsc --noEmit --watch` to the problems window somehow?

0
1 comment

Type checking is enabled by default in Typescript projects. Please make sure that the Typescript language service is turned on in Settings | Languages & Frameworks | TypeScript, it's output is shown in the Problems view. See TypeScript | WebStorm Documentation (jetbrains.com).

0

Please sign in to leave a comment.