-
Notifications
You must be signed in to change notification settings - Fork 12.5k
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
Resolve tsconfig.json extends
path using node_modules resolution logic
#18865
Comments
Seems like a good idea. If this feature is added, I think it would be important that it also work with Maybe this would be a small |
We excluded it during the initial implementation due to complexity, but left an error for it in so we could go back and add it later if we needed to. An issue here is that the module resolution strategy we use is determined by your compiler options... and an |
@weswigham yeah that is paradoxical 😨. We find the source of truth only to learn from it that we were never meant to discover it... |
How about escaping the paradoxical loop by just letting Node.js resolve this as it normally would? BTW, for reference and inspiration, all of these support resolving this to a package export: |
How good of an idea would it be to use |
@mightyjam that's a relative path, so it's fine.
We do not always use node module resolution for your package (you have to specify in your configuration if you want node module resolution or a custom scheme - that's effectively what |
The solution can be something like setting the {
"extends": "external-package/tsconfig",
"compilerOptions": {
"moduleResolution": "node"
}
} And, if the This right now is a "blocker" for me, because I have a "core" module with the settings that will be shared among all my modules, and because the path is relative to node_modules, and npm has now a flat tree, this breaks. For now I'm resolving it by adding setting the value to TSLint already have this resolved, you can make something like the example above without any issues. |
Yup. I'm the same use case as @lukeshiru. I can't imagine why the node_modules being flat prevents you from resolving properly, @lukeshiru. I don't understand what you're doing there. Why do you resolve other than what my example shows? tsconfig.json is not used after package is packaged, right? So my workaround should work. |
Not a very good idea. In my mono-repo setup, the plan would be to have a config-like sub-repo, and it could end up getting put at a higher level, so you'd need to do |
@lukeshiru there is always a |
@mightyiam the problem is mentioned by @rtm. Let's say you have you children module using the parent's module config like this: children-module/tsconfig {
"extends": "./node_modules/parent-module/tsconfig"
} If you then, have that children module used somewhere else (let's calle it
Now you have this:
The flat dependency tree makes children and parent at the same level. So for that to work you need children-module to have the config changed to: {
"extends": "../parent-module/tsconfig"
} The ideal scenario should be to solve it like TSLint does, by setting it like this: {
"extends": "parent-module/tsconfig"
} And letting node resolve it. |
@aluanhaddad that still doesn't solve the issue. See my comment above for clarification. |
Although by no means the only use case, the requirement might be simplest to understand by looking at the case where I want to install some config globally:
Then use it by saying
|
I don't agree with the use of global packages, I would be happy with tsconfig resolving Right now my tslint files are beautiful: {
"extends": "@property/core-dev/tslint"
} And my tsconfig are horrible :'( : {
// FIXME: Temporary fix until github.com/Microsoft/TypeScript/issues/18865 is fixed.
// TODO: Change to @property/core/tsconfig when above is resolved.
"extends": "../core/tsconfig",
"compilerOptions": {
"outDir": "./build"
}
} |
But the npm module resolution algorithm **does** resolve to global packages
anyway, you can't stop it.
…On Thu, Oct 26, 2017 at 10:37 PM, Lucas Ciruzzi ***@***.***> wrote:
I don't agree with the use of global packages, I would be happy with
tsconfig resolving extends like tslint does it, by using the npm module
resolution (that's what I proposed first
<#18865 (comment)>
).
—
You are receiving this because you were mentioned.
Reply to this email directly, view it on GitHub
<#18865 (comment)>,
or mute the thread
<https://github.com/notifications/unsubscribe-auth/AABfR6e_cFNgz1N9b986dq_D6vNb-eoRks5swLw2gaJpZM4Ppcg1>
.
|
I don't think is a good practice to require a global package from a module. Quoting npm itself: In general, the rule is:
|
I think we're getting distracted. I was not proposing global installation
of repos with TS configs in them as a best practice. I was simply trying to
say that it to understand how this feature would work it might be useful to
realize that that would work too.
…On Thu, Oct 26, 2017 at 10:54 PM, Lucas Ciruzzi ***@***.***> wrote:
I don't think is a good practice to require a global package from a
module. Quoting npm itself:
In general, the rule of is:
1. If you’re installing something that you want to use in your
program, using require('whatever'), then install it locally, at the root of
your project.
2. If you’re installing something that you want to use in your shell,
on the command line or something, install it globally, so that its binaries
end up in your PATH environment variable.
—
You are receiving this because you were mentioned.
Reply to this email directly, view it on GitHub
<#18865 (comment)>,
or mute the thread
<https://github.com/notifications/unsubscribe-auth/AABfR9QCGz8YK6E27Gk8eDqC03lxcdTpks5swMA6gaJpZM4Ppcg1>
.
|
Only a problem if you don't specify the module resolution algorithm in that particular file. If you do, then extends should work and the final module resolution will not change since the final pkg config overrides it. Of course that means you can't specify the module resolution in the base file. Personally, I think thats fine. |
I understand this is a bit of a chicken-and-egg problem here but not being able to extend from another module without specifying a path seems really problematic, and makes the extension mechanism far less useful than it should be. I can think of two trivial ways this could be done, the first resolving environment variables in the
and
currently I have a bunch of I then build the project using This works for our lerna monorepo, but seems like a bunch of silly hoops to jump through. |
@ravenscar I like the scheme idea! |
@ravenscar Either of these looks good. However, I would point out that If it is considered important to have both resolution strategies available for |
IMO better to only support node than support nothing at all. It's almost 100% certain people will be developing in a node environment. To me it seems like people here are confusing compiler settings with development settings. NPM and yarn don't offer custom module resolution for a reason. There is literally no use case for using anything other than node module resolution to resolve a base TSCONFIG |
A use case for this; I have two libraries: core-typescript: vends a baseline tsconfig.json for use in a bunch of projects (with things like code-style: vends a style-oriented tsconfig.json that extends core-typescript's tsconfig (with things like And I want application code to depend on code-style. My current approach is for code-style to declare core-typescript as a peer dependency, to enforce that it is installed at the top level of an application's node_modules—and assumes that it will only ever be a top level dependency. Brittle :(
|
Yup, @nevir's use case is exactly what I need. |
Another vote for this. I just want to keep my tsconfig in one place in a lerna repo. Rather surprised to see there's no support already for this. In my case I have multiple packages and those packages can either be built standalone or with lerna. If they are built as standalone then they will have node_modules in the package. If they are built using lerna the node_modules get hoisted into the parent directory. Therefore I cannot use the following solution
because it may also be here
The ideal solution appears to be
Using node module resolution would fix this issue. |
This just bit me because I had to extend a tsconfig.json in node_modules, that itself had to extend a tsconfig.json from a package in node_modules. But it can't, because |
Hey @weswigham! I think that PR didn't fixed this issue. I have a repo with settings and I'm trying to extend them like this: // child-module/tsconfig.json
{
"extends": "@org-name/settings-repo/tsconfig.json"
} And instead of looking for it in the // child-module/tsconfig.json
{
"extends": "./node_modules/@org-name/settings-repo/tsconfig.json"
} It will break because that only works in this scenario:
But then if I use
Because is not anymore in |
@weswigham Any chance this could be re-opened. As @lukeshiru points out this hasn't been properly implemented. The current implementation is not in line with the described Module resolution |
@lukeshiru, @charrondev, please allow me to suggest that opening a new issue might help. You know how no-one likes reopening closed issues. |
I am confused by this reported "bug" because I have been using this feature extensively since it was implemented and it works exactly as expected. Perhaps something else is wrong in your case. You may need to provide more information or even a sample repo. |
This definitely work properly for me at this point on I'll try to put together my reproduction case soon though. It's something like the following:
In this file structure I would expect the tsconfig extension to be capable of being discovered from when looked at through the symlinked file. Instead I think that the real file path is being resolved before evaluating the config file. I believe this is similar to the issue @lukeshiru is describing, but slightly different. In any case I can open a separate issue and try to make a sample repo for my issue. |
I'm not sure how people are saying this works... My project structure is like so:
And contents of `parent/project/tsconfig.json is:
Yet it fails as it's trying to extend from |
I also can confirm that this just doesn't work. Going through the code of that PR, I can only find out that the internal code is just over engineered and complicated for no apparent reason. Why is just doing |
I also want to note that it doesn't work by just doing:
Why am I trying this? Because I want to have an |
We don't support any kind of .js based configuration. At all. You should just have a tsconfig.json in the package root, which, ofc, can't do anything dynamic. |
would such things be on the roadmap? As mono-repos are used more and more, it is useful to share config with the same includes following the globs that all projects inside the mono repo complies to and have dynamic things in it. For example, we do this with our babel and nyc config, and that works like a charm. |
Go open an issue - #30400 kinda tracked it but was closed by the author. |
the goal: when someone clones this repo and runs `yarn` to install dependencies, all of the dependencies for the templates get installed as well. Additionally, this is done in such a way that linting works for these projects. This is a little bit tricky! Each template has a file at `assembly/tsconfig.json` which has an `extends` directive. This `extends` points to `../node_modules/assemblyscript/[...]`. So the installation of packages for each of these templates must be done in such a way that this relative lookup does not break. That's what the `nohoist` option does. Note that typescript supports some version of module resolution, rather than relative path, for the `extends` option. I tried to use this briefly and ran into problems, whereas `nohoist` worked very quickly. It seems like other people have had problems with `extends` pointing to packages as well: microsoft/TypeScript#18865 (comment)
the goal: when someone clones this repo and runs `yarn` to install dependencies, all of the dependencies for the templates get installed as well. Additionally, this is done in such a way that linting works for these projects. This is a little bit tricky! Each template has a file at `assembly/tsconfig.json` which has an `extends` directive. This `extends` points to `../node_modules/assemblyscript/[...]`. So the installation of packages for each of these templates must be done in such a way that this relative lookup does not break. That's what the `nohoist` option does. Note that typescript supports some version of module resolution, rather than relative path, for the `extends` option. I tried to use this briefly and ran into problems, whereas `nohoist` worked very quickly. It seems like other people have had problems with `extends` pointing to packages as well: microsoft/TypeScript#18865 (comment) This also adds the `yarn.lock`, since we have no config preventing it, and this is considered best practice (https://classic.yarnpkg.com/blog/2016/11/24/lockfiles-for-all/)
the goal: when someone clones this repo and runs `yarn` to install dependencies, all of the dependencies for the templates get installed as well. Additionally, this is done in such a way that linting works for these projects. This is a little bit tricky! Each template has a file at `assembly/tsconfig.json` which has an `extends` directive. This `extends` points to `../node_modules/assemblyscript/[...]`. So the installation of packages for each of these templates must be done in such a way that this relative lookup does not break. That's what the `nohoist` option does. Note that typescript supports some version of module resolution, rather than relative path, for the `extends` option. I tried to use this briefly and ran into problems, whereas `nohoist` worked very quickly. It seems like other people have had problems with `extends` pointing to packages as well: microsoft/TypeScript#18865 (comment) This also adds the `yarn.lock`, since we have no config preventing it, and this is considered best practice (https://classic.yarnpkg.com/blog/2016/11/24/lockfiles-for-all/)
I think we should have the same option for the |
I am trying to manage my tsconfigs by keeping them in a repo/subrepo, and was hoping this would work:
But I get
Is there some reason why the path given to
extends
, if neither relative nor absolute, could not be searched for using thenode_modules
lookup rules?(I would also like multiple extends, but I suppose there was some reason for not doing that, and that would be another ticket anyway.)
The text was updated successfully, but these errors were encountered: