1
こんにちは、私は.NET WebProjectでAngular 2アプリを設定しようとしていますが、どうやって解決するかわからない問題が発生します。Angular2を.NETで設定する
エラーのスナップショット。すべてのタイプのDEFファイルに を発生し、私はWebPACKのを使用してい
var webpack = require('webpack');
module.exports = {
entry: './App_UI/entry/main.ts',
output: {
path: './App_UI/bundle',
filename: 'app.bundle.js'
},
module: {
loaders: [
{ test: /\.ts$/, loader: 'ts-loader' }
]
},
resolve: {
extensions: ['.js', '.ts']
}
};
package.jsonは私が何をしないのです。この
"name": "search-engine",
"version": "0.1.0",
"license": "ISC",
"scripts": {
"lite": "lite-server",
"postinstall": "typings install",
"start": "tsc && concurrently \"npm run tsc:w\" \"npm run lite\" ",
"tsc": "tsc",
"tsc:w": "tsc -w",
"typings": "typings"
},
"dependencies": {
"@angular/common": "~2.4.5",
"@angular/compiler": "~2.4.5",
"@angular/compiler-cli": "~2.4.5",
"@angular/core": "~2.4.5",
"@angular/http": "~2.4.5",
"@angular/platform-browser": "~2.4.5",
"@angular/platform-browser-dynamic": "~2.4.5",
"@angular/router": "~3.4.5",
"@ng-bootstrap/ng-bootstrap": "^1.0.0-alpha.19",
"bootstrap": "^3.3.7",
"core-js": "~2.4.1",
"ng2-bs3-modal": "^0.10.4",
"reflect-metadata": "^0.1.8",
"rxjs": "~5.0.1",
"zone.js": "~0.7.6"
},
"devDependencies": {
"@types/core-js": "^0.9.35",
"lite-server": "^2.2.2",
"ts-loader": "^2.0.0",
"tslint": "^4.4.2",
"typescript": "^2.1.5",
"typings": "^2.1.0",
"webpack": "^2.2.1"
}
とtsconfig.json
{
"compilerOptions": {
"target": "es5",
"module": "commonjs",
"moduleResolution": "node",
"emitDecoratorMetadata": true,
"experimentalDecorators": true,
"removeComments": false
}
}
のように見えますか?
プロジェクトビルドをビルドするときにエラーが発生します。成功しました1 状態の一部のエラー: `nameは" schedulre "、" number "を見つけることができません。 et。 "Promise、Observable、Action"についてはわかりません。
エラーが発生し、そのエラーに関する質問をするには、そのエラーをテキスト**として含める必要があります。スクリーンショットは使用しないでください。 – Igor