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
6 lines
99 B
TypeScript
6 lines
99 B
TypeScript
// Define the `phoneDetail` module
|
|
angular.module('phoneDetail', [
|
|
'ngRoute',
|
|
'core.phone'
|
|
]);
|