-
Notifications
You must be signed in to change notification settings - Fork 1
Open
Description
# Angular2 框架基础核心模块
npm i -S @angular/core @angular/common
# Angular2 框架浏览器环境运行库,类似于 react-dom
npm i -S @angular/platform-browser
# 要让 Angular2 正常跑起来所依赖的运行环境和 polyfill
npm i -S core-js rxjs zone.js
# 在浏览器里运行过程中动态的编译 HTML 模版
npm i -S @angular/platform-browser-dynamic @angular/compiler
{
"compilerOptions": {
"target": "es5",
"module": "commonjs",
"sourceMap": true,
// 开启对 注解 的支持
"experimentalDecorators": true,
// Angular2 依赖新的 JavaScript API 和 DOM 操作
"lib": [
"es2015",
"dom"
]
},
"exclude": [
"node_modules/*"
]
}
Metadata
Metadata
Assignees
Labels
No labels