Cannot find module ‘process‘ or its corresponding type declarations.

//go to 'tsconfig.app.json' and add "node" to types:


/* To learn more about this file see: https://angular.io/config/tsconfig. */
{
  "extends": "./tsconfig.json",
  "compilerOptions": {
    "outDir": "./out-tsc/app",
    "types": ["node"]   <------------ ADD "node" HERE
  },
  "files": [
    "src/main.ts",
    "src/polyfills.ts"
  ],
  "include": [
    "src/**/*.d.ts"
  ]
}


版权声明:本文为xiangzaixiansheng原创文章,遵循CC 4.0 BY-SA版权协议,转载请附上原文出处链接和本声明。