From a0ffaf1654d4535890c13c009f67f9ffd39596e7 Mon Sep 17 00:00:00 2001 From: jay Date: Tue, 23 Mar 2021 13:25:26 +0500 Subject: [PATCH] build(typescript): :rotating_light: add @types dep to satisfy typescript errors Typescript linter had an error that `require` was undefined. This happened after updating Nodejs from 14.15 to 14.16. Not sure if this should be a global dep or local --- package.json | 1 + 1 file changed, 1 insertion(+) diff --git a/package.json b/package.json index 241a0c9..46cfb0d 100644 --- a/package.json +++ b/package.json @@ -30,6 +30,7 @@ }, "homepage": "https://github.com/PrismarineJS/prismarine-template#readme", "devDependencies": { + "@types/node": "^14.14.35", "jest": "^26.6.3", "require-self": "^0.2.3", "typescript": "^4.2.3"