Skip to content

Commit cf49581

Browse files
authored
[tsconfig.json] Revert accidental changes (Azure#27489)
- Revert changes accidentally merged in Azure#26358
1 parent ade1f3c commit cf49581

1 file changed

Lines changed: 13 additions & 13 deletions

File tree

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). */
@@ -45,7 +45,7 @@
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. */
4747
"skipLibCheck": true,
48-
"esModuleInterop": true /* Enables emit interoperability between CommonJS and ES Modules via creation of namespace objects for all imports. Implies 'allowSyntheticDefaultImports'. */
48+
"esModuleInterop": true /* Enables emit interoperability between CommonJS and ES Modules via creation of namespace objects for all imports. Implies 'allowSyntheticDefaultImports'. */
4949
// "preserveSymlinks": true, /* Do not resolve the real path of symlinks. */
5050

5151
/* Source Map Options */
@@ -58,4 +58,4 @@
5858
// "experimentalDecorators": true, /* Enables experimental support for ES7 decorators. */
5959
// "emitDecoratorMetadata": true, /* Enables experimental support for emitting type metadata for decorators. */
6060
}
61-
}
61+
}

0 commit comments

Comments
 (0)