私は 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
コンパイルでは確実に除外されていますが、タイピングファイルでは除外されているため、多少混乱しています。