打字稿 - 所有内容上的重复标识符

时间:2016-11-16 21:00:33

标签: android angular typescript nativescript

昨天我的NS NG2应用程序遇到了一些问题。每当我尝试运行命令时 - tns livesync android --watch,或任何其他命令来构建。我收到很长的错误列表。以下是此错误的一小部分。

app/node_modules/typescript/lib/lib.es6.d.ts(20054,15): error TS2451: Cannot red
eclare block-scoped variable 'name'.
app/node_modules/typescript/lib/lib.es6.d.ts(20328,6): error TS2300: Duplicate i
dentifier 'AAGUID'.
app/node_modules/typescript/lib/lib.es6.d.ts(20329,6): error TS2300: Duplicate i
dentifier 'AlgorithmIdentifier'.
app/node_modules/typescript/lib/lib.es6.d.ts(20330,6): error TS2300: Duplicate i
dentifier 'ConstrainBoolean'.
app/node_modules/typescript/lib/lib.es6.d.ts(20331,6): error TS2300: Duplicate i
dentifier 'ConstrainDOMString'.
app/node_modules/typescript/lib/lib.es6.d.ts(20332,6): error TS2300: Duplicate i
dentifier 'ConstrainDouble'.
app/node_modules/typescript/lib/lib.es6.d.ts(20333,6): error TS2300: Duplicate i
dentifier 'ConstrainLong'.
app/node_modules/typescript/lib/lib.es6.d.ts(20334,6): error TS2300: Duplicate i
dentifier 'CryptoOperationData'.
app/node_modules/typescript/lib/lib.es6.d.ts(20335,6): error TS2300: Duplicate i
dentifier 'GLbitfield'.
app/node_modules/typescript/lib/lib.es6.d.ts(20336,6): error TS2300: Duplicate i
dentifier 'GLboolean'.
app/node_modules/typescript/lib/lib.es6.d.ts(20337,6): error TS2300: Duplicate i
dentifier 'GLbyte'.
app/node_modules/typescript/lib/lib.es6.d.ts(20338,6): error TS2300: Duplicate i
dentifier 'GLclampf'.
app/node_modules/typescript/lib/lib.es6.d.ts(20339,6): error TS2300: Duplicate i
dentifier 'GLenum'.
app/node_modules/typescript/lib/lib.es6.d.ts(20340,6): error TS2300: Duplicate i
dentifier 'GLfloat'.
app/node_modules/typescript/lib/lib.es6.d.ts(20341,6): error TS2300: Duplicate i
dentifier 'GLint'.
app/node_modules/typescript/lib/lib.es6.d.ts(20342,6): error TS2300: Duplicate i
dentifier 'GLintptr'.
app/node_modules/typescript/lib/lib.es6.d.ts(20343,6): error TS2300: Duplicate i
dentifier 'GLshort'.
app/node_modules/typescript/lib/lib.es6.d.ts(20344,6): error TS2300: Duplicate i
dentifier 'GLsizei'.
app/node_modules/typescript/lib/lib.es6.d.ts(20345,6): error TS2300: Duplicate i
dentifier 'GLsizeiptr'.
app/node_modules/typescript/lib/lib.es6.d.ts(20346,6): error TS2300: Duplicate i
dentifier 'GLubyte'.
app/node_modules/typescript/lib/lib.es6.d.ts(20347,6): error TS2300: Duplicate i
dentifier 'GLuint'.
app/node_modules/typescript/lib/lib.es6.d.ts(20348,6): error TS2300: Duplicate i
dentifier 'GLushort'.
app/node_modules/typescript/lib/lib.es6.d.ts(20349,6): error TS2300: Duplicate i
dentifier 'IDBKeyPath'.
app/node_modules/typescript/lib/lib.es6.d.ts(20350,6): error TS2300: Duplicate i
dentifier 'KeyFormat'.
app/node_modules/typescript/lib/lib.es6.d.ts(20351,6): error TS2300: Duplicate i
dentifier 'KeyType'.

这只是我收到的错误的一小部分样本。为了给出soem上下文,这发生在我去Mac上工作时,意识到我需要做的比预期更多。所以转移到我的电脑,我对PC更熟悉。我拉了我做的小代码更改(已经尝试扭转这些)并尝试构建。那是我遇到这个错误列表的时候。我将在下面列出一些可能有助于找到答案的文件。

的package.json

{
  "description": "AppName",
  "license": "SEE LICENSE IN <your-license-filename>",
  "readme": "AppName",
  "repository": "myRepo",
  "nativescript": {
    "id": "org.nativescript.appName",
    "tns-ios": {
      "version": "2.4.0"
    },
    "tns-android": {
      "version": "2.4.0"
    }
  },
  "dependencies": {
    "@angular/common": "2.1.2",
    "@angular/compiler": "2.1.2",
    "@angular/core": "2.1.2",
    "@angular/forms": "2.1.2",
    "@angular/http": "2.1.2",
    "@angular/platform-browser": "2.1.2",
    "@angular/platform-browser-dynamic": "2.1.2",
    "@angular/platform-server": "^2.0.0",
    "@angular/router": "3.1.2",
    "email-validator": "^1.0.7",
    "nativescript-angular": "1.1.3",
    "nativescript-drop-down": "^1.3.3",
    "nativescript-loading-indicator": "^2.2.1",
    "nativescript-permissions": "^1.2.1",
    "nativescript-plugin-firebase": "^3.7.1",
    "nativescript-telerik-ui": "^1.4.1",
    "nativescript-toasty": "^1.1.0",
    "reflect-metadata": "~0.1.8",
    "tns-core-modules": "2.4.0",
    "tns-platform-declarations": "^2.0.0"
  },
  "devDependencies": {
    "babel-traverse": "6.19.0",
    "babel-types": "6.19.0",
    "babylon": "6.11.0",
    "lazy": "1.0.11",
    "filewalker": "0.1.2",
    "nativescript-dev-typescript": "^0.3.2",
    "typescript": "^2.0.10",
    "zone.js": "~0.6.21"
  }
}

references.d.ts

/// <reference path="./node_modules/tns-core-modules/tns-core-modules.d.ts" /> Needed for autocompletion and compilation.
/// <reference path="./node_modules/nativescript-plugin-firebase/index.d.ts" />
/// <reference path="./node_modules/tns-core-modules/tns-core-modules.es6.d.ts" />

/// <reference path="./node_modules/tns-platform-declarations/ios/ios.d.ts" />
/// <reference path="./node_modules/tns-platform-declarations/android/android17.d.ts" />

/// <reference path="./node_modules/tns-platform-declarations/android/org.nativescript.widgets.d.ts" /> 

tsconfig.json

{
    "compilerOptions": {
        "module": "commonjs",
        "target": "es5",
        "sourceMap": true,
        "experimentalDecorators": true,
        "emitDecoratorMetadata": true,
        "noEmitHelpers": true,
        "noEmitOnError": true,
        "lib": [
            "es2016"
        ]
    },
    "exclude": [
      "node_modules",
      "platforms"
    ]
}

如果我可以发布任何其他文件可能有帮助请告诉我。我相信问题在于其中一个文件。我已经尝试了所有我能想到的东西而且只是出于想法。希望你们其中一个人有一些想法!先谢谢

3 个答案:

答案 0 :(得分:0)

您的其他一些文件看起来包含对node_modules/typescript/lib/lib.es6.d.ts和其他.d.ts文件的引用。我尝试使用基于package.json和tsconfig.json的新创建项目重现相同的错误,但无论我的配置如何,lib.es6.d.ts从未包含在转换中。< / p>

您应该检查所有文件,以获取.d.tsnode_modules个文件的引用。看起来他们中的一些人互相冲突。

您也可以尝试删除node_modules目录并再次执行tns build android

还有一个注意事项 - tns-platform-declarations应该是devDependency - 它只用于自动完成和转换,你不需要它在设备上。

答案 1 :(得分:0)

可能是您所包含的参考文献之一是导出与内置es6类型冲突的es6类型。

取出参考评论,看看是否仍有重复的标识符问题。

还尝试取出lib:[&#34; es6&#34;]因为其他东西已经导入了es6类型。

新版本的typescript可以从npm模块中加载类型(如果它们是导出文件)。

您可以在compilerOptions中设置moduleResulotion: "node",并使用es6导入在项目的不同部分加载.d.ts文件。

答案 2 :(得分:0)

已解决 -

所以为了解决这个问题,我浏览了package.json的每一行并查找了每个模块。检查了他们最近的更新,并将其设置为安装最近更新大约20天前的版本。每一个人。删除我的节点模块并执行npm安装4次后。有效。