Visual Studio Code – In a TypeScript project, can the source and test files share directories and use different tsconfig.jsons, all while being understood by VS Code?
Here is the directory structure: root/ tsconfig.json ts/ index.ts index.spec.ts I want separate tsconfig.json settings for spec files and production code. For example, I want "noImplicitAny": true for my production code and "noImplicitAny": false for my test code. I also…