2018-08-01 18:00:40 +03:00
|
|
|
{
|
|
|
|
"compilerOptions": {
|
2018-08-22 16:38:01 +03:00
|
|
|
/* 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": [ "es6" ],
|
|
|
|
|
|
|
|
/* Specify module code generation. */
|
2018-08-01 18:00:40 +03:00
|
|
|
"module": "commonjs",
|
2018-08-22 16:38:01 +03:00
|
|
|
|
|
|
|
/* */
|
|
|
|
"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,
|
2018-08-22 16:38:01 +03:00
|
|
|
|
|
|
|
/* Redirect output structure to the directory. */
|
2018-08-01 18:00:40 +03:00
|
|
|
"outDir": "out",
|
2018-08-22 16:38:01 +03:00
|
|
|
|
|
|
|
/* 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",
|
2018-08-22 16:38:01 +03:00
|
|
|
|
|
|
|
/* 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,
|
2018-08-22 16:38:01 +03:00
|
|
|
|
|
|
|
/* Specify ECMAScript target version. */
|
|
|
|
"target": "es6",
|
2018-08-01 18:00:40 +03:00
|
|
|
},
|
|
|
|
"exclude": [
|
|
|
|
"node_modules",
|
2018-08-22 17:06:29 +03:00
|
|
|
".vscode-test",
|
|
|
|
"tools/**"
|
2018-08-01 18:00:40 +03:00
|
|
|
]
|
|
|
|
}
|