Skip to content

Commit c9c8ce4

Browse files
committed
Cleanup
1 parent a90c1ad commit c9c8ce4

File tree

1 file changed

+0
-26
lines changed

1 file changed

+0
-26
lines changed

core/ProjectGraph.ts

Lines changed: 0 additions & 26 deletions
Original file line numberDiff line numberDiff line change
@@ -56,32 +56,6 @@ namespace Moduless
5656
}
5757

5858
const targetProjectDir = Path.dirname(targetConfigFilePath);
59-
60-
/*
61-
for (const script of tsConfig.moduless.scripts)
62-
{
63-
if (typeof script === "string")
64-
{
65-
const scriptUrl = Url.parse(script);
66-
if (scriptUrl.protocol === "http:" || scriptUrl.protocol === "https:")
67-
{
68-
scripts.push(new ScriptReference(ScriptKind.external, script));
69-
continue;
70-
}
71-
else if (scriptUrl.protocol === null)
72-
{
73-
scripts.push(new ScriptReference(
74-
ScriptKind.local,
75-
Path.join(targetProjectDir, script)));
76-
77-
continue;
78-
}
79-
}
80-
81-
Util.error("Invalid script URL: " + String(script));
82-
}
83-
*/
84-
8559
let outFile = "";
8660

8761
if (tsConfig.compilerOptions.outFile)

0 commit comments

Comments
 (0)