build(docs-infra): remove obsolete typings.d.ts files from angular.io and docs examples (#38173)

There were two `typings.d.ts` files with SystemJS module definitions in
`aio/src/` and `aio/tools/examples/shared/boilerplate/cli/`. These are
remnants from old CLI versions that used SystemJS and are no longer
needed. For docs examples specifically, these files were never copied
over to example projects and thus not included in StackBlitz projects
and ZIP archives.

This commit removes these obsolete files.

PR Close #38173
This commit is contained in:
George Kalpakas 2020-07-22 14:40:00 +03:00 committed by Michael Prentice
parent 1bf2f118c7
commit 04ad0077f4
3 changed files with 0 additions and 11 deletions

View File

@ -1,5 +0,0 @@
/* SystemJS module definition */
declare var module: NodeModule;
interface NodeModule {
id: string;
}

View File

@ -98,7 +98,6 @@ class ExampleZipper {
'src/favicon.ico',
'src/polyfills.ts',
'src/test.ts',
'src/typings.d.ts',
'src/environments/**/*',
'src/testing/**/*',
// Only ignore root package.json

View File

@ -1,5 +0,0 @@
/* SystemJS module definition */
declare var module: NodeModule;
interface NodeModule {
id: string;
}