在 Visual Studio Code IDE 中找不到模块“@angular/core”

Big*_*yes 2 typescript angular

非常简单的代码。但有错误cannot find module '@angular/core'

课程.组件.ts

import {Component} from '@angular/core'


@Component({
    selector: 'courses'
})
export class CoursesComponent{

}
Run Code Online (Sandbox Code Playgroud)

打字.json

 {
  "ambientDependencies": {
    "es6-shim": "github:DefinitelyTyped/DefinitelyTyped/es6-shim/es6-shim.d.ts#6697d6f7dadbf5773cb40ecda35a76027e0783b2"
 }
}
Run Code Online (Sandbox Code Playgroud)

tsconfig.json

{
  "compilerOptions": {
    "target": "es5",
    "module": "system",
    "moduleResolution": "node",
    "sourceMap": true,
    "emitDecoratorMetadata": true,
    "experimentalDecorators": true,
    "removeComments": false,
    "noImplicitAny": false
  },
   "exclude": [
   "node_modules",
   "typings/main",
   "typings/main.d.ts"
  ]
}
Run Code Online (Sandbox Code Playgroud)

包.json

{
  "name": "angular2-quickstart",
  "version": "1.0.0",
  "scripts": {
   "start": "concurrent \"npm run tsc:w\" \"npm run lite\" ",
   "tsc": "tsc",
   "tsc:w": "tsc -w",
   "lite": "lite-server",
   "typings": "typings",
   "postinstall": "typings install"
  },
   "license": "ISC",
   "dependencies": {
   "angular2": "2.0.0-beta.7",
   "bootstrap": "^3.3.6",
   "es6-promise": "^3.0.2",
   "es6-shim": "^0.33.3",
   "reflect-metadata": "0.1.2",
   "rxjs": "5.0.0-beta.2",
   "systemjs": "0.19.22",
   "zone.js": "0.5.15"
  },
 "devDependencies": {
  "concurrently": "^2.0.0",
  "lite-server": "^2.1.0",
   "typescript": "^1.7.5"
  }
}
Run Code Online (Sandbox Code Playgroud)

我知道这种问题已经被回答过很多次了。但由于我的无知,我仍然不知道。

谢谢您的帮助。

编辑

我的文件组织为捕获

kum*_*etu 5

对我来说,这是由于未正确选择打字稿模块。因此,我在 Visual Studio 项目属性中选择了“tsconfig.json File -> compilerOptions -> module: commonjs ”的相同模块值。 在此输入图像描述