2016-04-17 00:32:47 +03:00
|
|
|
{
|
|
|
|
"compilerOptions": {
|
|
|
|
"module": "commonjs",
|
2017-09-25 07:03:32 +03:00
|
|
|
"target": "es2017",
|
2016-04-17 00:32:47 +03:00
|
|
|
"outDir": "out",
|
2016-10-16 22:56:00 +03:00
|
|
|
"lib": [
|
|
|
|
"es6"
|
|
|
|
],
|
2016-04-17 00:32:47 +03:00
|
|
|
"sourceMap": true,
|
2016-09-25 01:29:20 +03:00
|
|
|
"rootDir": ".",
|
|
|
|
"noImplicitReturns": true,
|
2017-09-23 23:20:56 +03:00
|
|
|
"noImplicitAny": true,
|
2017-06-08 08:18:17 +03:00
|
|
|
"strictNullChecks": true,
|
2017-09-23 23:20:56 +03:00
|
|
|
"experimentalDecorators": true,
|
|
|
|
"noUnusedLocals": true,
|
2017-09-25 07:03:32 +03:00
|
|
|
"noUnusedParameters": true,
|
2017-11-17 04:58:59 +03:00
|
|
|
"noImplicitThis": true,
|
|
|
|
"skipLibCheck": true
|
2016-04-17 00:32:47 +03:00
|
|
|
},
|
|
|
|
"exclude": [
|
2016-10-16 22:56:00 +03:00
|
|
|
"node_modules",
|
|
|
|
".vscode-test"
|
2016-04-17 00:32:47 +03:00
|
|
|
]
|
|
|
|
}
|