There are two ways to bootstrap an Ivy app: with `platformBrowserDynamic().bootstrapModule` and `renderComponent`. To distinguish between these two approaches we call the `platformBrowserDynamic().bootstrapModule` way `ivy-compat` and the `renderComponent` way just `ivy`. PR Close #28372
18 lines
314 B
JSON
18 lines
314 B
JSON
{
|
|
"extends": "../tslint.json",
|
|
"rules": {
|
|
"directive-selector": [
|
|
true,
|
|
"attribute",
|
|
"app",
|
|
"camelCase"
|
|
],
|
|
"component-selector": [
|
|
true,
|
|
"element",
|
|
"app",
|
|
"kebab-case"
|
|
]
|
|
}
|
|
}
|