1

私は grunt-ts と組み合わせて tsconfig.json ファイルを使用しています。これは grunt タスクです。

ts: {
    default: {
    tsconfig: true
  }

および tsconfig.json ファイル:

{
  "compilerOptions": {
    "target": "es5",
    "module": "system",
    "moduleResolution": "node",
    "sourceMap": true,
    "emitDecoratorMetadata": true,
    "experimentalDecorators": true,
    "removeComments": false,
    "noImplicitAny": false,
    "rootDir": "app",
    "outDir": "dist"
  },
  "exclude": [
    "node_modules",
    "bower_components",
    "typings/main",
    "typings/main.d.ts"
  ]
}

この厄介なタスクを実行しようとすると、重複した識別子からエラー TS2300 が発生します。これexclude: "typings/main"はこれを回避するためのものであり、コマンド ラインから tsc を実行すると機能しますが、grunt-ts タスクを実行すると機能しません。node_modulesコンパイルでは確実に除外されていますが、タイピングファイルでは除外されているため、多少混乱しています。

4

1 に答える 1

1

この厄介なタスクを実行しようとすると、重複した識別子からエラー TS2300 が発生します。exclude: "typings/main" はこれを回避するためのものであり、コマンド ラインから tsc を実行する場合は機能しますが、grunt-ts タスクを実行する場合は機能しません。

確認済みのバグ。あなたが作成した問題: https://github.com/TypeStrong/grunt-ts/issues/334は、実際にはhttps://github.com/TypeStrong/grunt-ts/issues/285の複製であり、手に入れることができます

于 2016-02-23T00:50:12.120 に答える