-
-
Notifications
You must be signed in to change notification settings - Fork 65
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
[FEAT] Multiple tsconfig.json support #21
Comments
I've just hit this too, it would be great to have. If you can point me in the right direction, I'd be happy to make a PR. |
Check out: eslint-import-resolver-ts |
btw if anyone stumbles upon this like I did, it's natively supported now, just pass an array of projects in parserOptions |
@factoidforrest |
For anyone else that stumbles upon this, edit eslint config with something like this: "settings": {
"import/resolver": {
"typescript": {
"project": ["tsconfig.json", "src/client/tsconfig.json"]
},
}
}, |
I am currently working on a yarn workspaces monorepo with one eslint config file at the root.
@typescript-eslint/parser
supports multiple eslint configs troughparserOptions.projects
I am not sure if this can be automated (i.e. the plugin reads
parserOptions.projects
)The text was updated successfully, but these errors were encountered: