sparse-intern-71089
04/23/2023, 11:48 PMwooden-queen-36575
04/23/2023, 11:48 PM├── config
│ ├── base.template.yaml
│ └── localstack.template.yaml
├── lib
│ ├── components
│ │ └── aws
│ │ └── backend
│ │ └── S3KmsBackend.ts
│ └── utils
│ ├── Stack.ts
│ └── registerAutoTags.ts
├── stacks
│ └── stack-a
│ ├── Pulumi.yaml
│ ├── index.ts
│ └── package.json
│ └── tsconfig.json
│ └── stack-b
│ ├── Pulumi.yaml
│ ├── index.ts
│ └── package.json
│ └── tsconfig.json
├── tests
│ ├── docker-compose.e2e.yml
│ ├── e2e
│ │ └── e2e.test.ts
│ ├── tsconfig.json
│ ├── unit
│ │ └── lib
│ │ ├── components
│ │ │ └── aws
│ │ │ └── backend
│ │ │ └── S3KmsBackend.test.ts
│ │ └── utils
│ │ └── Stack.test.ts
│ └── utils
│ ├── captureConsole.ts
│ ├── env.ts
│ └── s3Helper.ts
├── tsconfig.json
├── package.json
├── requirements.txt
├── Pulumi.yaml
├── README.md
little-cartoon-10569
04/24/2023, 1:30 AMruntime:
name: nodejs
options:
nodeargs: "--loader ts-node/esm --no-warnings"
You can also get tsconfig's paths working. I've had it working in the past, but since we switched to Yarn2, I've migrated everything to use that, and the tsconfig settings aren't needed for that.little-cartoon-10569
04/24/2023, 1:32 AMlittle-cartoon-10569
04/24/2023, 1:33 AMnodeLinker: node-modules
in your .yarnrc.ymlwooden-queen-36575
04/24/2023, 1:41 PM