├── .gitignore ├── README.md ├── app └── ts │ ├── app.component.ts │ └── main.ts ├── index.html ├── package.json ├── tsconfig.json └── typings.json /.gitignore: -------------------------------------------------------------------------------- 1 | .idea 2 | typings 3 | node_modules 4 | app/js/* 5 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buckyroberts/angular-2-template/HEAD/README.md -------------------------------------------------------------------------------- /app/ts/app.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buckyroberts/angular-2-template/HEAD/app/ts/app.component.ts -------------------------------------------------------------------------------- /app/ts/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buckyroberts/angular-2-template/HEAD/app/ts/main.ts -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buckyroberts/angular-2-template/HEAD/index.html -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buckyroberts/angular-2-template/HEAD/package.json -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buckyroberts/angular-2-template/HEAD/tsconfig.json -------------------------------------------------------------------------------- /typings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buckyroberts/angular-2-template/HEAD/typings.json --------------------------------------------------------------------------------