microsoft / TypeScript-Node-Starter

A reference example for TypeScript and Node with a detailed README describing how to use the two together.
MIT License
11.29k stars 2.76k forks source link

Cannot find tsconfig.test.json #346

Open jinbeomdev opened 2 years ago

jinbeomdev commented 2 years ago

tsconfig.tests.json | Config settings for compiling tests written in TypeScript

I want to reference tsconfig.tests.json but It is not exists

peterblazejewicz commented 2 years ago

Hey, this specific repo is using a single tsconfig.json. This applies to tests as well, the jest config re-uses tsconfig.json for ts-jest setup. So if you need a different setup for tests (say for mocking differently and with different deps), please just create one and extend tsconfig.json root one.