Skip to content

Commit 200d297

Browse files
Upgraded typescript to v5.7.3
1 parent 0973c53 commit 200d297

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -55,6 +55,6 @@
5555
"devDependencies": {
5656
"@types/blessed": "*",
5757
"quick-lint-js": "^3.0.0",
58-
"typescript": "^4.9.5"
58+
"typescript": "^5.7.3"
5959
}
6060
}

test/tail.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ module.exports = function(file) {
1717
s.emit('close');
1818
};
1919

20-
fs.open(file, 'a+', 0644, function(err, fd) {
20+
fs.open(file, 'a+', 0o644, function(err, fd) {
2121
if (err) {
2222
s.emit('error', err);
2323
s.destroy();

tsconfig.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,10 +12,10 @@
1212
"noFallthroughCasesInSwitch": true,
1313
"noUnusedLocals": true,
1414
"noUnusedParameters": true,
15-
"moduleResolution": "node",
15+
// "moduleResolution": "node",
1616
"esModuleInterop": true,
1717
"skipLibCheck": true,
1818
"forceConsistentCasingInFileNames": true,
19-
"noEmit": true,
19+
"noEmit": true
2020
}
2121
}

0 commit comments

Comments
 (0)