forked from microsoft/azure-pipelines-vscode
-
Notifications
You must be signed in to change notification settings - Fork 0
/
tsconfig.json
58 lines (44 loc) · 1.63 KB
/
tsconfig.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
{
"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. */
"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. */
//"noUnusedParameters": true,
/* Redirect output structure to the directory. */
"outDir": "out",
/* Specifies the root directory of input files. Only use to control the output directory structure with --outDir. */
"rootDir": "src",
/* Generates corresponding .map file. */
"sourceMap": true,
/* Enable all strict type checking options.
Enabling --strict enables
--noImplicitAny,
--noImplicitThis,
--alwaysStrict,
--strictNullChecks,
--strictFunctionTypes
--strictPropertyInitialization.
*/
//"strict": true,
/* Specify ECMAScript target version. */
"target": "es2019",
/* */
"allowJs": true,
"skipLibCheck": true // https://github.com/Azure/ms-rest-js/issues/367
},
"include": [
"src"
]
}