TS2503: Cannot find namespace 'NodeJS'
Проблема
ERROR in notification.interface.ts(15,11): error TS2503: Cannot find namespace 'NodeJS'.
Решение
Добавить node
в compilerOptions.types
ts конфига
{
"extends": "../tsconfig.json",
"compilerOptions": {
"outDir": "../out-tsc/app",
"types": ["node"] <== Добавить вот сюда
},
"exclude": [
"test.ts",
"**/*.spec.ts"
]
}