Module not found when using type from .d.ts file
See original GitHub issueI started this issue on angular/angular issues, but seems to be related to CLI, so just copy-pasting the issue here 😃.
I’m submitting a …
[x] bug report
Current behavior
When assigning a custom type (like Post, or User) to a decorated property (with either ng decorator like @Input() or a custom one), where type is declared in d.ts file, angular throws an error:
ERROR in ./src/app/app.component.ts
Module not found: Error: Can't resolve './types' in '/home/dracco/projects/ng2/src/app'
@ ./src/app/app.component.ts 11:0-31
@ ./src/app/app.module.ts
@ ./src/main.ts
@ multi webpack-dev-server/client?http://localhost:4200/ ./src/main.ts
webpack: Failed to compile.
This does not happen if:
- type is added through generic (like
Array<Post>) OR - no decorator is added to property OR
- file with declaration has
.tsextension instead of.d.ts
Expected behavior No error should be thrown. property should have given type.
Minimal reproduction of the problem with instructions
- Run
ng initto create a new Angular project. - Create a
d.tsfile inappfolder - Add an exported interface to the
.d.tsfile - Import above interface in component file
- Add a property with decorator and above type (e.g.
@Input() prop: MyType) - Run
ng serve
What is the motivation / use case for changing the behavior?
The default workflow in TypeScript suggests keeping declarations and interfaces in .d.ts file. Simple Angular components might not use Observables and still accept data from the host. I am actually surprised nobody mentioned and solved it so far as it is pretty severe (it also happens in 4.0.0-beta.8).
Please tell us about your environment:
- OS: linux x64 (Ubuntu 16.10)
- Angular version: 2.3.1, 2.2.4, 4.0.0-beta.8
- Angular CLI version: 1.0.0-beta.28.3
- Node (for AoT issues): 7.5.0
- NPM: 4.1.2
Issue Analytics
- State:
- Created 7 years ago
- Reactions:16
- Comments:40 (6 by maintainers)
Top Related StackOverflow Question
They said it’s cli issue. Is Angular and CLI 2 separate products? If not, do cooperate. This issue does not happen if using webpack starter, so I don’t believe it’s issue on Angular or TypeScript side itself. Please reopen this issue and investigate it if you want people to believe that Angular is a serious platform.
This isn’t a CLI issue, but rather a TypeScript/Angular issue.