Angular 6-@ types / googlemaps / index.d.ts'不是一个模块

时间:2018-09-17 09:35:30

标签: angular typescript google-maps

我刚刚更新了package.json文件中的一些软件包。然后在运行npm install之后,我运行ng serve。但是我现在遇到以下错误。

ERROR in ... File '.../node_modules/@types/googlemaps/index.d.ts' is not a module.
... error TS6137: Cannot import type declaration files. Consider importing 'googlemaps' instead of '@types/googlemaps'

我在这里尝试了建议的解决方案-@types/googlemaps/index.d.ts' is not a module在component.ts文件的顶部添加了/// <reference types="@types/googlemaps" />,但这不能解决我的问题,错误仍然存​​在。


package.json

{
  "name": "demo",
  "version": "0.0.0",
  "license": "MIT",
  "scripts": {
    "ng": "ng",
    "start": "ng serve",
    "build": "ng build",
    "test": "ng test",
    "lint": "ng lint",
    "e2e": "ng e2e"
  },
  "private": true,
  "dependencies": {
    "@angular/animations": "^6.1.7",
    "@angular/cdk": "^6.0.0",
    "@angular/common": "^6.1.7",
    "@angular/compiler": "^6.1.7",
    "@angular/core": "^6.1.7",
    "@angular/flex-layout": "^6.0.0-beta.18",
    "@angular/forms": "^6.1.7",
    "@angular/http": "^6.1.7",
    "@angular/material": "^6.0.0",
    "@angular/platform-browser": "^6.1.7",
    "@angular/platform-browser-dynamic": "^6.1.7",
    "@angular/router": "^6.1.7",
    "@auth0/angular-jwt": "^2.0.0",
    "@types/chartjs": "0.0.31",
    "@types/googlemaps": "^3.30.13",
    "@types/lodash": "^4.14.108",
    "auth0-js": "^9.5.1",
    "auth0-lock": "^11.6.1",
    "chart.js": "^2.7.2",
    "chartjs-plugin-annotation": "^0.5.7",
    "chartjs-plugin-datalabels": "^0.3.0",
    "core-js": "^2.5.5",
    "d3": "^5.1.0",
    "font-awesome": "^4.7.0",
    "hammerjs": "^2.0.8",
    "json-formatter-js": "^2.2.0",
    "lodash": "^4.17.10",
    "lodash-es": "^4.17.10",
    "moment": "^2.22.1",
    "npm": "^6.0.0",
    "progressbar.js": "^1.0.1",
    "rxjs": "^6.3.2",
    "rxjs-compat": "^6.1.0",
    "ua-parser-js": "^0.7.18",
    "wordcloud": "^1.1.0",
    "zone.js": "^0.8.26"
  },
  "devDependencies": {
    "@angular-devkit/build-angular": "~0.6.0",
    "@angular/cli": "6.2.2",
    "@angular/compiler-cli": "^6.1.7",
    "@angular/language-service": "^6.1.7",
    "@types/d3": "^5.0.0",
    "@types/d3-dsv": "^1.0.31",
    "@types/jasmine": "~2.8.7",
    "@types/jasminewd2": "~2.0.3",
    "@types/lodash-es": "^4.17.0",
    "@types/node": "~8.9.4",
    "codelyzer": "^4.3.0",
    "eslint": "^4.19.1",
    "jasmine-core": "~3.1.0",
    "jasmine-spec-reporter": "~4.2.1",
    "karma": "~2.0.2",
    "karma-chrome-launcher": "~2.2.0",
    "karma-coverage-istanbul-reporter": "^1.4.2",
    "karma-jasmine": "~1.1.2",
    "karma-jasmine-html-reporter": "^1.0.0",
    "protractor": "~5.3.1",
    "source-map-explorer": "^1.5.0",
    "ts-node": "~6.0.3",
    "tslint": "~5.10.0",
    "typescript": "~2.9.2"
  }
}

tsconfig.json

{
  "compileOnSave": false,
  "compilerOptions": {
    "outDir": "./dist/out-tsc",
    "sourceMap": true,
    "declaration": false,
    "moduleResolution": "node",
    "emitDecoratorMetadata": true,
    "experimentalDecorators": true,
    "target": "es5",
    "typeRoots": [
      "node_modules/@types"
    ],
    "types": ["googlemaps"],
    "lib": [
      "es2017",
      "dom"
    ]
  }
}

component.ts

/// <reference types="@types/googlemaps" />
import { Component, OnInit, Input, ViewChild, AfterViewInit } from '@angular/core';
import { } from '@types/googlemaps';

3 个答案:

答案 0 :(得分:8)

对于Angular6〜

  1. npm install @types/googlemaps --save-devyarn add @types/googlemaps
  2. "googlemaps"类型数组中添加tsconfig.app.json

adding 'googlemaps' to tsconfig.app.json example (Line 6)

  1. "googlemaps"类型数组中添加tsconfig.spec.json

adding 'googlemaps' to tsconfig.app.json example (Line 8)

  1. 在component.ts文件的第一行添加/// <reference types="@types/googlemaps" />。此行将导入@ types / googlemaps。 (下面示例的第1行)
  2. 将Google变量声明为declare let google: any;(下面示例的第6行)

enter image description here

参考:

答案 1 :(得分:6)

您可能在component.ts文件中不需要此行(仅适用于Angular <6):

import { } from '@types/googlemaps';

这是Angular 6的(基本/最小)示例:

/// <reference types="@types/googlemaps" />
map: google.maps.Map;
this.map = new google.maps.Map(....);

基本上,如果要在Angular <6中使用它,则必须通过import方法添加它。在Angular 6+中,您必须通过reference方法添加它。您不应该同时添加两者。

希望我能帮上忙。

答案 2 :(得分:0)

我只是在node_modules/@types/googlemaps/index.d.ts路径中添加以下行以声明googlemaps模块:

declare module 'googlemaps';

然后在组件ts文件中添加import {} from 'googlemaps';