mirror of
https://github.com/denoland/deno.git
synced 2025-07-27 23:23:56 +00:00
Enable TS strict mode by default (#3899)
Fixes #3324 Co-authored-by: Kitson Kelly <me@kitsonkelly.com>
This commit is contained in:
parent
852823fa50
commit
90125566bb
56 changed files with 314 additions and 179 deletions
|
@ -24,7 +24,7 @@ if (parsedArgs._.length === 0) {
|
|||
Deno.exit(1);
|
||||
}
|
||||
|
||||
const files = {};
|
||||
const files: Record<string, { content: string }> = {};
|
||||
for (const filename of parsedArgs._) {
|
||||
const base = pathBase(filename);
|
||||
const content = await Deno.readFile(filename);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue