2019-03-15 22:45:00 +03:00
|
|
|
{
|
|
|
|
"compilerOptions": {
|
|
|
|
"module": "commonjs",
|
2020-02-10 19:40:43 +03:00
|
|
|
"target": "es2017",
|
2019-03-15 22:45:00 +03:00
|
|
|
"lib": [
|
|
|
|
"es2017"
|
|
|
|
],
|
|
|
|
"sourceMap": true,
|
|
|
|
"strict": true,
|
|
|
|
"outDir": "dist/cjs",
|
|
|
|
"types": [
|
|
|
|
"node",
|
|
|
|
"jest"
|
2019-05-23 01:59:57 +03:00
|
|
|
],
|
|
|
|
"allowSyntheticDefaultImports": true,
|
2019-05-23 03:12:42 +03:00
|
|
|
"moduleResolution": "node",
|
|
|
|
"declaration": true
|
2019-03-15 22:45:00 +03:00
|
|
|
},
|
|
|
|
"include": [
|
2019-06-13 17:22:28 +03:00
|
|
|
"src"
|
2019-03-15 22:45:00 +03:00
|
|
|
]
|
2019-06-13 17:22:28 +03:00
|
|
|
}
|