typescript错误:会覆盖输入文件

时间:2017-06-09 11:54:23

标签: typescript ionic-framework ionic3

我已更新latest Ionic version并删除了src/declarations.d.ts个文件。当我尝试运行应用ionic serve时,我的应用显示以下错误。

  

typescript:/sophy/src/assets/dev-load/load.ts,line:1               模块'../../../node_modules/nprogress/nprogress.js'被解析为'/sophy/node_modules/nprogress/nprogress.js',但是   ' - allowJs'未设置。

   L1:  import * as NProgress from '../../../node_modules/nprogress/nprogress.js'
   L2:  (() => {

have found the solution因为它现在上面的错误不存在。但现在它显示错误。

  

打字稿错误               无法写入文件'/sophy/node_modules/nprogress/nprogress.js',因为它               会覆盖输入文件。

你知道为什么吗?

tsconfig.json

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

我认为这是问题所在。那我怎么解决呢?当我删除declarations.d.ts时,上面会出现错误。如果我添加它就没有问题(我也必须删除"allowJs": true)。请解决。

SRC \资产\ load.ts

  import * as NProgress from '../../../node_modules/nprogress/nprogress.js'
    (() => {
      NProgress.start();
    })()

1 个答案:

答案 0 :(得分:2)

您可以尝试使用js库的类型声明。

npm install --save-dev @types/nProgress

可以看到声明文件here。 它将被添加到node_modules/@types目录中。 做

 import Nprogress from 'nprogress'