-
Notifications
You must be signed in to change notification settings - Fork 2
02.Getting Started
elle510 edited this page Nov 21, 2016
·
44 revisions
- Node.js 를 설치한다.
- 프로젝트 폴더를 생성한 후 프로젝트 폴더에서 package.json 을 생성한다.
$ npm init
- package.json 을 아래와 같이 작성한다.
{
"name": "angular2-typescript-gulp",
"version": "1.0.0",
"description": "Angular2 with TypeScript and Gulp QuickStart",
"scripts": {
"clean": "gulp clean",
"compile": "gulp compile",
"build": "gulp build",
"start": "concurrent --kill-others \"gulp watch\" \"lite-server\"",
"postinstall": "typings install"
},
"author": "NKIA",
"license": "MIT",
"dependencies": {
"@angular/common": "~2.2.0",
"@angular/compiler": "~2.2.0",
"@angular/core": "~2.2.0",
"@angular/forms": "~2.2.0",
"@angular/http": "~2.2.0",
"@angular/platform-browser": "~2.2.0",
"@angular/platform-browser-dynamic": "~2.2.0",
"@angular/router": "~3.2.0",
"@angular/upgrade": "~2.2.0",
"angular-in-memory-web-api": "~0.1.15",
"core-js": "^2.4.1",
"reflect-metadata": "^0.1.8",
"rxjs": "5.0.0-beta.12",
"systemjs": "0.19.39",
"zone.js": "^0.6.25"
},
"devDependencies": {
"concurrently": "^3.0.0",
"del": "^2.2.0",
"gulp": "^3.9.1",
"gulp-sourcemaps": "^1.6.0",
"gulp-tslint": "^6.1.1 ",
"gulp-typescript": "^2.13.6",
"lite-server": "^2.2.2",
"tslint": "^3.5.0",
"typescript": "^2.0.3",
"typings": "^1.3.3",
"ts-node": "^1.3.0"
}
}
- 아래 npm 명령으로 package.json 에 설정된 모듈들을 설치한다.
$ npm install
프로젝트 폴더에 node_modules 가 생성되고 node_modules 폴더에서 설치된 모듈을 확인한다.
- typescript 컴파일을 위해 프로젝트 폴더에 tsconfig.json 을 생성한다. ''' { "compilerOptions": { "outDir": "build/app", "target": "es5", "module": "system", "moduleResolution": "node", "sourceMap": true, "emitDecoratorMetadata": true, "experimentalDecorators": true, "removeComments": false, "noImplicitAny": false }, "exclude": [ "gulpfile.ts", "node_modules" ] }
1.