microsoft / microsoft/TypeScript
Imports in .d.ts files break wildcard modules declarations
Nobody has claimed this yet.
- Dominant language
- Go
- Stars
- 111k
- Forks
- 14.3k
- Avg merge
- 2d 4h
- Merged PRs (30d)
- 132
Description
TypeScript Version: 3.1.3
Search Terms:
import d.ts wildcard module
Code
main.ts
/// <reference path="./typings.d.ts" />
import template from './template.html';
typings.d.ts
import * as _angular from 'angular';
declare module '*.html' {
const content : string;
export default content;
}
{
"name": "ts-bug",
"version": "1.0.0",
"dependencies": {
"angular": "^1.7.5"
}
}
Compile with:
tsc main.ts
Expected behavior:
Compiled without errors.
Actual behavior:
Compiled with error
main.ts:3:22 - error TS2307: Cannot find module './template.html'.
3 import template from './template.html';
~~~~~~~~~~~~~~~~~
Removing import * as _angular from 'angular'; fixes the issue.
Side Note 1
Regular module declarations work regardless of imports being present.
Side Note 2
import * as _angular from 'angular'; is needed to later do:
declare global {
const angular : typeof _angular;
}
to workaround https://github.com/Microsoft/TypeScript/issues/10178
Contributor guide
First steps
- Read the whole issue, then the project's contributing guide.
- Comment on the issue to say you are picking it up — it saves two people doing the same work.
- Fork the repository and make your change on a branch.
- Open a pull request that references the issue number.
Research direction
Reproduce the report with main.ts and typings.d.ts using tsc main.ts, keeping the import from angular and the wildcard module declaration for *.html. Trace why the import in typings.d.ts prevents ./template.html from resolving. Done means the example compiles without TS2307 while retaining the import and wildcard declaration.
Written by the indexing model from the issue text.
Assessment
- Tech stack
- typescript
- Domain
- compilers
- Issue type
- Bug
- Difficulty
- 4/5
- Estimated time
- 3-5 days
- Activity status
- Stale
- Clarity
- Clearly specified
- Newbie friendliness
- 35/100