azure-pipelines-vscode/tsconfig.json

59 строки
1.6 KiB
JSON
Исходник Обычный вид История

2018-08-01 18:00:40 +03:00
{
"compilerOptions": {
/* Parse in strict mode and emit "use strict" for each source file. */
"alwaysStrict": true,
/* List of library files to be included in the compilation. */
"lib": [ "es2019" ],
/* Specify module code generation. */
2018-08-01 18:00:40 +03:00
"module": "commonjs",
/* */
"moduleResolution": "node",
/* Report errors for fallthrough cases in switch statement. */
"noFallthroughCasesInSwitch": true,
/* Report error when not all code paths in function return a value. */
"noImplicitReturns": true,
/* Report errors on unused locals. */
"noUnusedLocals": true,
/* Report errors on unused parameters. */
2018-08-23 15:27:30 +03:00
//"noUnusedParameters": true,
/* Redirect output structure to the directory. */
2018-08-01 18:00:40 +03:00
"outDir": "out",
/* Specifies the root directory of input files. Only use to control the output directory structure with --outDir. */
2018-08-01 18:00:40 +03:00
"rootDir": "src",
/* Generates corresponding .map file. */
"sourceMap": true,
/* Enable all strict type checking options.
Enabling --strict enables
--noImplicitAny,
--noImplicitThis,
--alwaysStrict,
--strictNullChecks,
--strictFunctionTypes
--strictPropertyInitialization.
*/
2018-08-23 15:27:30 +03:00
//"strict": true,
/* Specify ECMAScript target version. */
"target": "es2019",
/* */
"allowJs": true,
"skipLibCheck": true // https://github.com/Azure/ms-rest-js/issues/367
2018-08-01 18:00:40 +03:00
},
"include": [
"src"
2018-08-01 18:00:40 +03:00
]
}