angular universal - TSC cannot find name of Global Object
Typescript was complaint about this issue, and manage to resolve this by editing tsconfig.app.json with the following content :
"compilerOptions": {
"outDir": "../out-tsc/app",
"types": ["node"]
},
Comments