├── .circleci └── config.yml ├── .clang-format ├── .gitignore ├── LICENSE ├── README.md ├── closure.conf ├── index.html ├── package.json ├── protractor.conf.js ├── size_report.sh ├── src ├── app.module.ts ├── basic.ng.html ├── basic.ts ├── bootstrap.ts └── tsconfig.json ├── test ├── app.e2e-spec.ts ├── browser.config.json └── tsconfig.json └── yarn.lock /.circleci/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angular/closure-demo/HEAD/.circleci/config.yml -------------------------------------------------------------------------------- /.clang-format: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angular/closure-demo/HEAD/.clang-format -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | built 3 | npm-debug.log 4 | dist 5 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angular/closure-demo/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angular/closure-demo/HEAD/README.md -------------------------------------------------------------------------------- /closure.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angular/closure-demo/HEAD/closure.conf -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angular/closure-demo/HEAD/index.html -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angular/closure-demo/HEAD/package.json -------------------------------------------------------------------------------- /protractor.conf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angular/closure-demo/HEAD/protractor.conf.js -------------------------------------------------------------------------------- /size_report.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angular/closure-demo/HEAD/size_report.sh -------------------------------------------------------------------------------- /src/app.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angular/closure-demo/HEAD/src/app.module.ts -------------------------------------------------------------------------------- /src/basic.ng.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angular/closure-demo/HEAD/src/basic.ng.html -------------------------------------------------------------------------------- /src/basic.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angular/closure-demo/HEAD/src/basic.ts -------------------------------------------------------------------------------- /src/bootstrap.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angular/closure-demo/HEAD/src/bootstrap.ts -------------------------------------------------------------------------------- /src/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angular/closure-demo/HEAD/src/tsconfig.json -------------------------------------------------------------------------------- /test/app.e2e-spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angular/closure-demo/HEAD/test/app.e2e-spec.ts -------------------------------------------------------------------------------- /test/browser.config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angular/closure-demo/HEAD/test/browser.config.json -------------------------------------------------------------------------------- /test/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angular/closure-demo/HEAD/test/tsconfig.json -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angular/closure-demo/HEAD/yarn.lock --------------------------------------------------------------------------------