Skip to content

Commit 341eaf6

Browse files
committed
fix
1 parent 4d917ce commit 341eaf6

File tree

3 files changed

+15
-15
lines changed

3 files changed

+15
-15
lines changed

package-lock.json

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

specification/communication/data-plane/Microsoft.CommunicationServicesSms/stable/2021-03-07/communicationservicessms.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222
"tags": [
2323
"Sms"
2424
],
25-
"summary": "Sends a SMS message from a phone number that belongs to the authenticated account.",
25+
"summary": "Sends a Sms message from a phone number that belongs to the authenticated account.",
2626
"operationId": "Sms_Send",
2727
"x-ms-examples": {
2828
"SuccessfulSend": {

tsconfig.json

Lines changed: 13 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -1,27 +1,27 @@
11
{
22
"compilerOptions": {
33
/* Basic Options */
4-
"target": "es2019", /* Specify ECMAScript target version: 'ES3' (default), 'ES5', 'ES2015', 'ES2016', 'ES2017','ES2018' or 'ESNEXT'. */
5-
"module": "commonjs", /* Specify module code generation: 'none', 'commonjs', 'amd', 'system', 'umd', 'es2015', or 'ESNext'. */
4+
"target": "es2019" /* Specify ECMAScript target version: 'ES3' (default), 'ES5', 'ES2015', 'ES2016', 'ES2017','ES2018' or 'ESNEXT'. */,
5+
"module": "commonjs" /* Specify module code generation: 'none', 'commonjs', 'amd', 'system', 'umd', 'es2015', or 'ESNext'. */,
66
// "lib": [], /* Specify library files to be included in the compilation. */
77
// "allowJs": true, /* Allow javascript files to be compiled. */
88
// "checkJs": true, /* Report errors in .js files. */
99
// "jsx": "preserve", /* Specify JSX code generation: 'preserve', 'react-native', or 'react'. */
10-
"declaration": true, /* Generates corresponding '.d.ts' file. */
11-
"declarationMap": true, /* Generates a sourcemap for each corresponding '.d.ts' file. */
12-
"sourceMap": true, /* Generates corresponding '.map' file. */
10+
"declaration": true /* Generates corresponding '.d.ts' file. */,
11+
"declarationMap": true /* Generates a sourcemap for each corresponding '.d.ts' file. */,
12+
"sourceMap": true /* Generates corresponding '.map' file. */,
1313
// "outFile": "./", /* Concatenate and emit output to single file. */
1414
// "outDir": "./dist", /* Redirect output structure to the directory. */
1515
// "rootDir": "./", /* Specify the root directory of input files. Use to control the output directory structure with --outDir. */
1616
// "composite": true, /* Enable project compilation */
1717
// "removeComments": true, /* Do not emit comments to output. */
1818
// "noEmit": true, /* Do not emit outputs. */
19-
"importHelpers": true, /* Import emit helpers from 'tslib'. */
19+
"importHelpers": true /* Import emit helpers from 'tslib'. */,
2020
// "downlevelIteration": true, /* Provide full support for iterables in 'for-of', spread, and destructuring when targeting 'ES5' or 'ES3'. */
2121
// "isolatedModules": true, /* Transpile each file as a separate module (similar to 'ts.transpileModule'). */
2222

2323
/* Strict Type-Checking Options */
24-
"strict": true, /* Enable all strict type-checking options. */
24+
"strict": true /* Enable all strict type-checking options. */,
2525
// "noImplicitAny": true, /* Raise error on expressions and declarations with an implied 'any' type. */
2626
// "strictNullChecks": true, /* Enable strict null checks. */
2727
// "strictFunctionTypes": true, /* Enable strict checking of function types. */
@@ -31,10 +31,10 @@
3131
// "alwaysStrict": true, /* Parse in strict mode and emit "use strict" for each source file. */
3232

3333
/* Additional Checks */
34-
"noUnusedLocals": true, /* Report errors on unused locals. */
35-
"noUnusedParameters": true, /* Report errors on unused parameters. */
36-
"noImplicitReturns": true, /* Report error when not all code paths in function return a value. */
37-
"noFallthroughCasesInSwitch": true, /* Report errors for fallthrough cases in switch statement. */
34+
"noUnusedLocals": true /* Report errors on unused locals. */,
35+
"noUnusedParameters": true /* Report errors on unused parameters. */,
36+
"noImplicitReturns": true /* Report error when not all code paths in function return a value. */,
37+
"noFallthroughCasesInSwitch": true /* Report errors for fallthrough cases in switch statement. */,
3838

3939
/* Module Resolution Options */
4040
// "moduleResolution": "node", /* Specify module resolution strategy: 'node' (Node.js) or 'classic' (TypeScript pre-1.6). */
@@ -44,7 +44,7 @@
4444
// "typeRoots": [], /* List of folders to include type definitions from. */
4545
// "types": [], /* Type declaration files to be included in compilation. */
4646
// "allowSyntheticDefaultImports": true, /* Allow default imports from modules with no default export. This does not affect code emit, just typechecking. */
47-
"esModuleInterop": true /* Enables emit interoperability between CommonJS and ES Modules via creation of namespace objects for all imports. Implies 'allowSyntheticDefaultImports'. */
47+
"esModuleInterop": true /* Enables emit interoperability between CommonJS and ES Modules via creation of namespace objects for all imports. Implies 'allowSyntheticDefaultImports'. */
4848
// "preserveSymlinks": true, /* Do not resolve the real path of symlinks. */
4949

5050
/* Source Map Options */
@@ -57,4 +57,4 @@
5757
// "experimentalDecorators": true, /* Enables experimental support for ES7 decorators. */
5858
// "emitDecoratorMetadata": true, /* Enables experimental support for emitting type metadata for decorators. */
5959
}
60-
}
60+
}

0 commit comments

Comments
 (0)