We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a4417ff commit 428c47cCopy full SHA for 428c47c
src/CommandLineParser.ts
@@ -162,7 +162,7 @@ function findConfigFile(commandLine: ts.ParsedCommandLine) {
162
if (path.isAbsolute(commandLine.options.project)) {
163
configPath = commandLine.options.project;
164
} else {
165
- path.join(process.cwd(), commandLine.options.project);
+ configPath = path.join(process.cwd(), commandLine.options.project);
166
}
167
if (fs.statSync(configPath).isDirectory()) {
168
configPath = path.join(configPath, "tsconfig.json");
0 commit comments