diff --git a/modules/payload_tests/hello_world/ts/systemjs/index.html b/modules/payload_tests/hello_world/ts/systemjs/index.html deleted file mode 100644 index 0a0d5b8e3e..0000000000 --- a/modules/payload_tests/hello_world/ts/systemjs/index.html +++ /dev/null @@ -1,11 +0,0 @@ - - - Angular Hello World payload test - - - Loading... - - - - - diff --git a/modules/payload_tests/hello_world/ts/systemjs/index.ts b/modules/payload_tests/hello_world/ts/systemjs/index.ts deleted file mode 100644 index d770ed63b0..0000000000 --- a/modules/payload_tests/hello_world/ts/systemjs/index.ts +++ /dev/null @@ -1,30 +0,0 @@ -/** - * @license - * Copyright Google Inc. All Rights Reserved. - * - * Use of this source code is governed by an MIT-style license that can be - * found in the LICENSE file at https://angular.io/license - */ - -import {Component, NgModule} from '@angular/core'; -import {platformBrowserDynamic} from '@angular/platform-browser-dynamic'; -import {BrowserModule} from '@angular/platform-browser'; - -@Component({ - selector: 'hello-app', - template: ` -

Hello, {{name}}!

- -` -}) -class HelloCmp { - name = 'World'; -} - -@NgModule({ - bootstrap: [HelloCmp], - imports: [BrowserModule] -}) -class ExampleModule {} - -platformBrowserDynamic().bootstrapModule(ExampleModule); diff --git a/modules/payload_tests/hello_world/ts/webpack/index.html b/modules/payload_tests/hello_world/ts/webpack/index.html deleted file mode 100644 index 94b30d7cff..0000000000 --- a/modules/payload_tests/hello_world/ts/webpack/index.html +++ /dev/null @@ -1,10 +0,0 @@ - - - Angular Hello World payload test - - - Loading... - - - - diff --git a/modules/payload_tests/hello_world/ts/webpack/index.ts b/modules/payload_tests/hello_world/ts/webpack/index.ts deleted file mode 100644 index d3ca23fdfc..0000000000 --- a/modules/payload_tests/hello_world/ts/webpack/index.ts +++ /dev/null @@ -1,33 +0,0 @@ -/** - * @license - * Copyright Google Inc. All Rights Reserved. - * - * Use of this source code is governed by an MIT-style license that can be - * found in the LICENSE file at https://angular.io/license - */ - -import {Component, NgModule} from '@angular/core'; -import {platformBrowserDynamic} from '@angular/platform-browser-dynamic'; -import {BrowserModule} from '@angular/platform-browser'; - -@Component({ - selector: 'hello-app', - template: ` -

Hello, {{name}}!

- -` -}) -export class HelloCmp { - name = 'World'; -} - -@NgModule({ - bootstrap: [HelloCmp], - imports: [BrowserModule] -}) -class ExampleModule {} - - -export function main() { - platformBrowserDynamic().bootstrapModule(ExampleModule); -}