Answers for "Cannot find namespace 'NodeJS'."

0

Cannot find namespace 'NodeJS'.

{
  "extends": "../tsconfig.json",
  "compilerOptions": {
    "outDir": "../out-tsc/app",
    "module": "es6",
    "baseUrl": "",
    "types": ["node"] --> ADD THIS
  },
  "exclude": [
    "test.ts",
    "**/*.spec.ts"
  ]
}
Posted by: Guest on August-05-2021
0

typescript cannot find namespace

in tsconfig file which should be:
"module": "commonjs"
Posted by: Guest on June-08-2021

Code answers related to "Javascript"

Browse Popular Code Answers by Language