salmon-printer-16080
10/18/2021, 9:52 PMindex.ts
file across multiple projects? I want my structure to look like this:
--Shared:
Index.ts
package.json
--Project_1:
Pulumi.<dev-stack-name>.yaml
Pulumi.<test-stack-name>.yaml
tsconfig.json
--Project_2:
Pulumi.<dev-stack-name>.yaml
Pulumi.<test-stack-name>.yaml
tsconfig.json
I am running my code in a pulumi/pulumi-nodejs:3.11.0
container, and my tsconfig.json
file has the following reference.
"files": [
"../shared/index.ts"
]
Pulumi is failing with the following error, so im assuming that it doesnt like referencing an index outside of the project directory.. error: It looks like the Pulumi SDK has not been installed. Have you run npm install or yarn install?
billowy-army-68599
10/18/2021, 10:04 PMindex.ts
across multiple projects? does it have a componentresource in it?salmon-printer-16080
10/18/2021, 10:11 PMbillowy-army-68599
10/18/2021, 10:13 PMsalmon-printer-16080
10/18/2021, 10:21 PMbillowy-army-68599
10/18/2021, 10:23 PMsalmon-printer-16080
10/18/2021, 10:25 PM