Permalink
Show file tree
Hide file tree
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Browse files
Generate shortest
rootDirs
module specifier instead of first possib…
…le (#51244) * Generate shortest rootDirs module specifier instead of first possible * Simplify `min`
- Loading branch information
1 parent
bbb42f4
commit ef69116c41cb6805f89e6592eacb0ccb7f02207d
Showing
4 changed files
with
37 additions
and
11 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
/// <reference path="fourslash.ts" /> | ||
|
||
// @Filename: /tsconfig.json | ||
//// { | ||
//// "compilerOptions": { | ||
//// "module": "commonjs", | ||
//// "rootDirs": [".", "./some/other/root"] | ||
//// } | ||
//// } | ||
|
||
// @Filename: /some/other/root/types.ts | ||
//// export type Something = {}; | ||
|
||
// @Filename: /index.ts | ||
//// const s: Something/**/ | ||
|
||
verify.importFixModuleSpecifiers("", ["./types"]); |