1

我正在使用lodash新的ionic2@RC.0项目模板,其中包括

  • 打字稿
  • 卷起
  • es2015 模块

这对我有用:

npm install lodash --save
npm install @types/lodash --save-dev --save-exact
// typescript
import _ from "lodash";

但显然是因为摇树的事情而lodash-es被推荐的。Rollup但是当我这样做时:

npm install lodash-es --save  // instead of `lodash`
npm install @types/lodash --save-dev --save-exact
// typescript
import _ from "lodash-es";

我收到一个Typescript错误

error TS2307: Cannot find module 'lodash-es'.

但是,转译后的文件javascript实际上可以正常工作并正常运行。是什么赋予了?

这是我的tsconfig

{
  "compilerOptions": {
    "allowSyntheticDefaultImports": true,
    "declaration": true,
    "emitDecoratorMetadata": true,
    "experimentalDecorators": true,
    "lib": [
      "dom",
      "es2015"
    ],
    "module": "es2015",
    "moduleResolution": "node",
    "sourceMap": true,
    "pretty": true,
    "target": "es5"
  },
  "filesGlob": [
    "**/*.ts",
    "!node_modules/**/*"
  ],
  "exclude": [
    "node_modules"
  ],
  "compileOnSave": false,
  "atom": {
    "rewriteTsconfig": false
  }
}
4

1 回答 1

2

问题是没有人为 lodash-es 创建类型文件,因此 Typescript 编译器无法验证。

于 2016-09-30T21:15:27.820 回答