在 Angular 14 中使用 Node.js 中的模块需要安装 @types/node 模块。
具体地,需要在项目中运行以下命令:
npm install --save-dev @types/node
然后,在需要使用 Node.js 中的模块的文件中导入相关模块时,需要使用以下语法:
import * as nodeModuleName from 'module-name';
例如,要在 Angular 14 中使用 fs 模块,需要在文件中这样导入:
import * as fs from 'fs';
这样做就可以解决找不到 Namespace 'NodeJS' 的问题了。