let -> const

This commit is contained in:
Matt Bierner
2018-10-04 14:04:23 -07:00
parent 8ecebfb761
commit 4b2aed7bb2
8 changed files with 101 additions and 101 deletions

View File

@@ -135,7 +135,7 @@ function monacodtsTask(out: string, isWatch: boolean): NodeJS.ReadWriteStream {
});
const inputFiles: { [file: string]: string; } = {};
for (let filePath in neededFiles) {
for (const filePath in neededFiles) {
if (/\bsrc(\/|\\)vs\b/.test(filePath)) {
// This file is needed from source => simply read it now
inputFiles[filePath] = fs.readFileSync(filePath).toString();