mirror of
https://github.com/microsoft/TypeScript.git
synced 2026-05-19 01:33:15 -05:00
Remove the check that if base file name starts with ^ is dynamic file name since those files can exist (#36109)
Fixes #35734
This commit is contained in:
@@ -272,7 +272,7 @@ namespace ts.server {
|
||||
|
||||
/*@internal*/
|
||||
export function isDynamicFileName(fileName: NormalizedPath) {
|
||||
return fileName[0] === "^" || getBaseFileName(fileName)[0] === "^";
|
||||
return fileName[0] === "^";
|
||||
}
|
||||
|
||||
/*@internal*/
|
||||
|
||||
Reference in New Issue
Block a user