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
10 lines
165 B
TypeScript
10 lines
165 B
TypeScript
// #docregion
|
|
// Define the `phonecatApp` AngularJS module
|
|
angular.module('phonecatApp', [
|
|
'ngAnimate',
|
|
'ngRoute',
|
|
'core',
|
|
'phoneDetail',
|
|
'phoneList',
|
|
]);
|