Skip to content

Commit

Permalink
fix: sandbox typescript check on all files
Browse files Browse the repository at this point in the history
- makes Deno check all files when it does the check instead of just bootstrap.js
  • Loading branch information
teleclimber committed Oct 1, 2024
1 parent 7c9bf06 commit 5bf4b78
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion cmd/ds-host/sandbox/sandbox.go
Original file line number Diff line number Diff line change
Expand Up @@ -324,7 +324,7 @@ func (s *Sandbox) doStart() error {

// Deno run by default does not type check. We'd like to type check on app init:
if s.operation == opAppInit {
denoArgs = append(denoArgs, "--check")
denoArgs = append(denoArgs, "--check=all")
}

tRef = time.Now()
Expand Down

0 comments on commit 5bf4b78

Please sign in to comment.