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 773cd4c commit ac00019Copy full SHA for ac00019
lib/buildtools/src/prebuild/tsc.ts
@@ -103,8 +103,7 @@ export async function runTsc(input: InputAsset, noEmit: boolean): Promise<TscRes
103
// If noEmit isn't specified, then run tsc again without including test
104
// files and actually output the files
105
const filesWithoutTests = fileNames.filter(p => {
106
- const segments = p.split(pathlib.sep);
107
- console.log(segments);
+ const segments = p.split(pathlib.posix.sep);
108
return !segments.includes('__tests__');
109
});
110
const compileProgram = ts.createProgram({
0 commit comments