2017-04-10 08:25:42 +03:00
|
|
|
{
|
2017-04-14 00:40:50 +03:00
|
|
|
"compilerOptions": {
|
2020-06-16 07:38:24 +03:00
|
|
|
"sourceMap": true,
|
2017-04-14 00:40:50 +03:00
|
|
|
"declaration": true,
|
2017-04-10 08:25:42 +03:00
|
|
|
"noImplicitAny": true,
|
|
|
|
"noImplicitReturns": true,
|
|
|
|
"noImplicitThis": true,
|
|
|
|
"noUnusedLocals": true,
|
|
|
|
"noUnusedParameters": true,
|
|
|
|
"strictNullChecks": true,
|
2017-06-02 18:26:55 +03:00
|
|
|
"experimentalDecorators": true,
|
2017-04-14 00:40:50 +03:00
|
|
|
"module": "commonjs",
|
2020-06-16 07:38:24 +03:00
|
|
|
"target": "ES2018",
|
2017-04-14 00:40:50 +03:00
|
|
|
"outDir": "lib",
|
2020-06-16 07:38:24 +03:00
|
|
|
"lib": ["ES2018"],
|
2017-04-14 00:40:50 +03:00
|
|
|
"types": [
|
2017-10-15 20:30:19 +03:00
|
|
|
"chai-as-promised",
|
2017-04-14 00:40:50 +03:00
|
|
|
"chai-subset",
|
|
|
|
"mocha",
|
|
|
|
"node"
|
2017-06-03 09:38:34 +03:00
|
|
|
],
|
|
|
|
"baseUrl": ".",
|
2017-04-14 00:40:50 +03:00
|
|
|
},
|
2020-06-16 07:38:24 +03:00
|
|
|
"include": ["src"],
|
2017-04-10 08:25:42 +03:00
|
|
|
}
|