ASP.NET MVC 5 SPAをAngular 2で開発するためのIDEとしてVisual Studioを使用しようとしています。 ビルドしようとすると問題が発生します。プロジェクト。それは*.d.ts
ファイル内に多くのエラーを与えます。Visual Studioのbuildからnode_moduleフォルダを除外する方法2015 update 3
私はangular-cli
コマンドを使用してプロジェクトを作成しました:
:ng new project-name
、ここでは、ソリューションエクスプローラのように見えるものでしょうか?私はtsconfig.json
ファイルに次を追加しましたが、ないと思われる回答によると
:私は、Visual Studioのコードの角度2を使用して任意の問題
アップデートを持っていませんあなたがyについて、最新の活字体のツールを使用していることを確認し
{
"compileOnSave": false,
"compilerOptions": {
"outDir": "./dist/out-tsc",
"sourceMap": true,
"declaration": false,
"moduleResolution": "node",
"emitDecoratorMetadata": true,
"experimentalDecorators": true,
"lib": [
"es2016"
]
},
"exclude": [
"./node_modules",
"**/*.spec.ts"
]
}
編集コンパイルからnode_modulesフォルダを除外するためにあなたの 'tsconfig.json'。 – jessehouwing
私はそれを試みましたが、変更を加えません@jessehouwing – Hooman
Windowsエクスプローラで 'node_modules'ディレクトリを隠してみてください。 –