refactor(docs-infra): remove unnecessary use strict from docs examples TS files (#38143)

By default, TypeScript will emit `"use strict"` directives, so it is not
necessary to include `'use strict'` in `.ts` files:
https://www.typescriptlang.org/docs/handbook/compiler-options.html#:~:text=--noImplicitUseStrict

PR Close #38143
This commit is contained in:
George Kalpakas
2020-07-30 13:03:08 +03:00
committed by Alex Rickabaugh
parent 00b7186cb2
commit d89200ad24
65 changed files with 0 additions and 129 deletions

View File

@ -1,6 +1,4 @@
// #docregion
'use strict';
// Define the `phonecatApp` AngularJS module
angular.module('phonecatApp', [
'ngAnimate',