is there a command that will get pulumi to just ve...
# typescript
l
is there a command that will get pulumi to just verify that the typescript is valid, without actually running it? I’d like to add a basic lint/test kind of task that executes faster than
pulumi up
that needs to check resources, etc.
l
tsc
should do the job.
l
yeah, running into issues on things inside of
node_modules
and the “exclude” setting not doing what it’s supposed to (it also leaves around an
index.js
that pulumi prefers over
index.ts
even if out of date) I’ll keep poking at it if there isn’t a “validate” mode built into pulumi
l
Are you defining
outdir
in your tsconfig? You shouldn't have an overlapping .js and .ts file...