webpack TS2304 Cannot find name 'Map', 'Set', 'Promise'

后端 未结 15 2331
伪装坚强ぢ
伪装坚强ぢ 2020-12-01 07:07

I have the following webpack.config.js

var path = require(\"path\");
var webpack = require(\'webpack\');

module.exports = {
  entry: {
    \'ng2-auto-comple         


        
15条回答
  •  我在风中等你
    2020-12-01 07:33

    https://stackoverflow.com/a/44800490/9690407

    npm install typings -g
    typings install
    

    is deprecated in npm 5.6.0! Instead use the npm install @types/core-js syntax.

提交回复
热议问题