24 строки
421 B
JSON
24 строки
421 B
JSON
{
|
|
"compilerOptions": {
|
|
"module": "commonjs",
|
|
"outDir": "out",
|
|
"sourceMap": true,
|
|
"target": "es6",
|
|
"lib": [
|
|
"es2015"
|
|
],
|
|
//"strict": true,
|
|
"noImplicitAny": true,
|
|
"noImplicitThis": true,
|
|
"alwaysStrict": true,
|
|
"strictBindCallApply": true,
|
|
"strictFunctionTypes": true,
|
|
//"strictNullChecks": true,
|
|
//"strictPropertyInitialization": true,
|
|
},
|
|
"exclude": [
|
|
"node_modules",
|
|
"third_party"
|
|
]
|
|
}
|