Open
Description
🚀 Feature request
Command (mark with an x
)
- new
- build
- serve
- test
- e2e
- generate
- add
- update
- lint
- extract-i18n
- run
- config
- help
- version
- doc
Description
see above.
The problem I encountered is that I was not able to use paths
configuration in tsconfig, the compiler works but the ide cries.
Describe the solution you'd like
Add tsconfig.json
file at the application directory
Example:
{
"extends": "./tsconfig.app.json",
"include": ["src/**/*"]
}
- The "include": ["src/**/*"] I have to add because new files were not picked up by tsserver, something about "the file is not part of tsconfig project" etc.