fix(cli): make hashes of tsconfig deterministic (#8167)

Fixes #8163
This commit is contained in:
Kitson Kelly 2020-10-29 21:18:18 +11:00 committed by GitHub
parent bfce376c68
commit b0482400c9
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
5 changed files with 94 additions and 1 deletions

View file

@ -0,0 +1,5 @@
export class ServerRequest {
respond(value: { body: string }) {
console.log(value);
}
}