diff options
author | Yoshiya Hinosawa <stibium121@gmail.com> | 2019-09-08 01:27:18 +0900 |
---|---|---|
committer | Ryan Dahl <ry@tinyclouds.org> | 2019-09-07 12:27:18 -0400 |
commit | f12acdb50bd6afae21d8d033548c012d23ec2791 (patch) | |
tree | e61071f25a9dfe3ea853bcaea0ece7307a02bc73 /js/compiler.ts | |
parent | a205e8a3c2bf5ba72fe18bd7f224303338956c62 (diff) |
Update @typescript-eslint/* to v2.1.0 (#2878)
Diffstat (limited to 'js/compiler.ts')
-rw-r--r-- | js/compiler.ts | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/js/compiler.ts b/js/compiler.ts index 255ac9774..12062e63f 100644 --- a/js/compiler.ts +++ b/js/compiler.ts @@ -61,7 +61,7 @@ interface ConfigureResponse { /** Options that either do nothing in Deno, or would cause undesired behavior * if modified. */ -const ignoredCompilerOptions: ReadonlyArray<string> = [ +const ignoredCompilerOptions: readonly string[] = [ "allowSyntheticDefaultImports", "baseUrl", "build", @@ -415,7 +415,7 @@ class Host implements ts.CompilerHost { data: string, writeByteOrderMark: boolean, onError?: (message: string) => void, - sourceFiles?: ReadonlyArray<ts.SourceFile> + sourceFiles?: readonly ts.SourceFile[] ): void { util.log("writeFile", fileName); try { |