angular-cn/modules/@angular/platform-browser
Tobias Bosch 00b726f695 refactor(core): introduce `NgModule.schemas`
This allows Angular to error on unknown properties,
allowing applications that don’t use custom elements
to get better error reporting.

Part of #10043

BREAKING CHANGE:
- By default, Angular will error during parsing
  on unknown properties,
  even if they are on elements with a `-` in their name
  (aka custom elements). If you application is using
  custom elements, fill the new parameter `@NgModule.schemas`
  with the value `[CUSTOM_ELEMENTS_SCHEMA]`.

  E.g. for bootstrap:
  ```
  bootstrap(MyComponent, {schemas: [CUSTOM_ELEMENTS_SCHEMA]});
  ```
2016-07-26 07:04:36 -07:00
..
src refactor(core): change module semantics 2016-07-26 07:04:10 -07:00
test refactor(core): introduce `NgModule.schemas` 2016-07-26 07:04:36 -07:00
testing refactor(core): change module semantics 2016-07-26 07:04:10 -07:00
core_private.ts feat(browser): use AppModules for bootstrap in the browser 2016-07-02 20:35:09 -07:00
dynamic.ts chore(lint): Added license headers to most TypeScript files 2016-06-23 09:47:54 -07:00
index.ts refactor(core): clean up platform bootstrap and initTestEnvironment 2016-07-08 13:41:38 -07:00
package.json chore(package.json): make the packages installable 2016-05-27 17:21:34 -07:00
private_export.ts refactor(core): change module semantics 2016-07-26 07:04:10 -07:00
rollup.config.js fix: split dynamic bits in platform-browser into platform-browser-dynamic 2016-06-14 15:31:24 -07:00
testing.ts fix(platform-browser/testing): clean up public api for platform-browser/testing (#9519) 2016-06-23 16:42:25 -07:00
tsconfig-es5.json fix(platform-browser): remove testing_e2e target (#10029) 2016-07-13 10:10:02 -07:00
tsconfig-es2015.json fix(platform-browser): remove testing_e2e target (#10029) 2016-07-13 10:10:02 -07:00