forked from microsoft/TypeScript
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Handle auto-import when
paths
pattern is absolute (microsoft#60236)
- Loading branch information
1 parent
31de163
commit 3b0dfaa
Showing
2 changed files
with
24 additions
and
3 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
/// <reference path="fourslash.ts" /> | ||
|
||
// @Filename: tsconfig.json | ||
//// { | ||
//// "compilerOptions": { | ||
//// "paths": { | ||
//// "@root/*": ["${configDir}/src/*"] | ||
//// } | ||
//// } | ||
//// } | ||
|
||
// @Filename: src/one.ts | ||
//// export const one = 1; | ||
|
||
// @Filename: src/foo/two.ts | ||
//// one/**/ | ||
|
||
verify.importFixModuleSpecifiers("", ["@root/one"]); |