https://pulumi.com logo
s

steep-toddler-94095

07/02/2021, 11:29 PM
Is it possible to have pulumi use the
tsconfig.json
file at the root of my repo? I'm getting an error when trying to use
.flatMap
even though I have
es2019
added to my root tsconfig's
lib
. It only works if I create a new tsconfig inside the stack's dir but I'd like to avoid having to do this for every stack
i suppose i could add a tsconfig in the stack dir with only
Copy code
{
  "extends": "../../tsconfig.json"
}