Myron Uecker
Myron Uecker
I found the fix, I needed this in tsconfig.json ``` "typeRoots": ["node_modules/@types"], "types": ["node"], ```
I am able to make this work to an extent. All you really have to do is set the workDir and npmWorkDir to the same directory like this: workDir =...
I was able to use gradle configurations to set up the proper dependencies to work around this. It works like this: 1. Declare a configuration in your base script ```groovy...
I don't think any plugin defines npmResources. You can declare configurations on the fly, which is what I'm doing. Adding the dependency in the way I did it lets the...