-
-
Notifications
You must be signed in to change notification settings - Fork 62
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Support for jsconfig.json #73
Comments
You can just try |
const { getTsconfig } = require("get-tsconfig")
getTsconfig("./projectWithTsconfig")
// { path: 'projectWithTsconfig/tsconfig.json', config: { compilerOptions: { baseUrl: '.' } } }
getTsconfig("./projectWithJsconfig")
// null This is a |
getTsconfig("./projectWithTsconfig/jsconfig.json") |
getTsconfig("./projectWithJsconfig/jsconfig.json")
// null |
Please provide a minimal but runnable reproduction. |
@rbong Would you like to raise a PR for it?
|
@JounQin Yes, I'm working on a PR |
Our project doesn't use Typescript by rather only Javascript, thus only have
jsconfig.json
file. Does this package supportjsconfig.json
? Thanks!The text was updated successfully, but these errors were encountered: