hey folks, are there any templates for: - newer ve...
# getting-started
b
hey folks, are there any templates for: • newer versions of typescript • monorepo with microstacks • top level
package.json
and
tsconfig.json
• or just preferably
pnpm
support so that I don't open up a black hole of
node_modules
I've looked at the existing issues on github but while seems is possible and some people have done it successfuly, I haven't been able to find good examples
l
Most of that should just work. To change the typescript version, just put the correct version in your packages.json in the normal way. Microstacks just needs Pulumi.yaml files in all the project directories. Top-level tsconfig is built-in, just don't have one in the project directory. Not sure that you want a shared package.json; I haven't looked into that. I don't know what pnpm support requires; hopefully, just package dependencies or a special loader? If you need to change the node loader (e.g. to use ESM) you can use the nodeargs option. https://www.pulumi.com/docs/concepts/projects/project-file/