2016-04-17 00:32:47 +03:00
|
|
|
{
|
|
|
|
"compilerOptions": {
|
|
|
|
"module": "commonjs",
|
2016-09-25 01:29:20 +03:00
|
|
|
"target": "es6",
|
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,
|
|
|
|
"strictNullChecks": 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
|
|
|
]
|
|
|
|
}
|