add support for jsconfig.json
Opened this issue · 2 comments
marcoskichel commented
Description
I might be missing some setting, but it looks like there is no way to setup the server in order to pickup configurations defined in a jsconfig.json
file while in a javascript project. This is useful especially for handling imports done through paths defined there. E.g.:
{
"compilerOptions": {
"baseUrl": ".",
"paths": {
"#/*": ["src/_local_modules/*"],
},
"experimentalDecorators": true
}
}
import { Something } from '#/something'
JSConfig reference: https://code.visualstudio.com/docs/languages/jsconfig
yioneko commented
marcoskichel commented
Thanks @yioneko, will come up with a minimal repro soon