-
Notifications
You must be signed in to change notification settings - Fork 12.5k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
🤖 Pick PR #57778 (fix type import check for default-i...) into releas…
…e-5.4 (#58116) Co-authored-by: Lyu, Wei-Da <[email protected]>
- Loading branch information
1 parent
8eb3367
commit b754fc3
Showing
2 changed files
with
61 additions
and
1 deletion.
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,59 @@ | ||
/// <reference path="fourslash.ts" /> | ||
|
||
// @allowJs: true | ||
|
||
// @Filename: /default.ts | ||
//// export default class TestDefaultClass {} | ||
|
||
// @Filename: /defaultType.ts | ||
//// export default interface TestDefaultInterface {} | ||
|
||
// @Filename: /reExport/toReExport.ts | ||
//// export class TestClassReExport {} | ||
//// export interface TestInterfaceReExport {} | ||
|
||
// @Filename: /reExport/index.ts | ||
//// export { TestClassReExport, TestInterfaceReExport } from './toReExport'; | ||
|
||
// @Filename: /exportList.ts | ||
//// class TestClassExportList {}; | ||
//// interface TestInterfaceExportList {}; | ||
//// export { TestClassExportList, TestInterfaceExportList }; | ||
|
||
// @Filename: /baseline.ts | ||
//// export class TestClassBaseline {} | ||
//// export interface TestInterfaceBaseline {} | ||
|
||
// @Filename: /a.js | ||
//// import /**/ | ||
|
||
verify.completions({ | ||
marker: "", | ||
isNewIdentifierLocation: true, | ||
exact: [ | ||
{ | ||
name: "TestClassBaseline", | ||
insertText: "import { TestClassBaseline } from \"./baseline\";", | ||
source: "./baseline", | ||
}, | ||
{ | ||
name: "TestClassExportList", | ||
insertText: "import { TestClassExportList } from \"./exportList\";", | ||
source: "./exportList", | ||
}, | ||
{ | ||
name: "TestClassReExport", | ||
insertText: "import { TestClassReExport } from \"./reExport\";", | ||
source: "./reExport", | ||
}, | ||
{ | ||
name: "TestDefaultClass", | ||
insertText: "import TestDefaultClass from \"./default\";", | ||
source: "./default", | ||
}, | ||
], | ||
preferences: { | ||
includeCompletionsForImportStatements: true, | ||
includeCompletionsWithInsertText: true, | ||
} | ||
}); |