We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent cdb2652 commit 4705304Copy full SHA for 4705304
.github/workflows/ci.yml
@@ -36,8 +36,6 @@ jobs:
36
# Re: https://github.com/actions/setup-node/pull/125
37
- name: Register Problem Matcher for TSC
38
run: echo "##[add-matcher].github/tsc.json"
39
- if: (contains(matrix.node-version, '12')
40
-
41
42
- name: Tests
43
run: npm test -- --no-lint
src/compiler/builderState.ts
@@ -91,7 +91,7 @@ namespace ts {
91
function getReferencedFileFromImportedModuleSymbol(symbol: Symbol) {
92
if (symbol.declarations && symbol.declarations[0]) {
93
const declarationSourceFile = getSourceFileOfNode(symbol.declarations[0]);
94
- return declarationSourceFile && declarationSo
+ return declarationSourceFile && declarationSourceFile.resolvedPath;
95
}
96
97
0 commit comments