From ab0b67da9b6dc6dd0c6b0159ac3156157fc39052 Mon Sep 17 00:00:00 2001 From: matijs Date: Mon, 21 Oct 2024 08:11:57 +0200 Subject: [PATCH] chore: add @types/node to .ncurc.major.cjs --- .ncurc.major.cjs | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/.ncurc.major.cjs b/.ncurc.major.cjs index 28525047..eb37691b 100644 --- a/.ncurc.major.cjs +++ b/.ncurc.major.cjs @@ -2,6 +2,13 @@ const minorConfig = require('./.ncurc.minor.cjs'); module.exports = { ...minorConfig, - reject: [...minorConfig.reject, 'eslint', 'eslint-plugin-json', 'style-dictionary'], + reject: [ + ...minorConfig.reject, + // @types/node is kept in line with the node version in .nvmrc and package.json#engines.node + '@types/node', + 'eslint', + 'eslint-plugin-json', + 'style-dictionary', + ], target: 'latest', };