2020-07-22 04:46:57 +03:00
|
|
|
{
|
|
|
|
"compilerOptions": {
|
|
|
|
"target": "es2018",
|
2020-07-26 00:38:20 +03:00
|
|
|
"module": "CommonJS",
|
2020-08-17 00:23:55 +03:00
|
|
|
"lib": [
|
|
|
|
"es6",
|
|
|
|
"esnext"
|
|
|
|
],
|
2020-08-12 07:21:10 +03:00
|
|
|
"importHelpers": false,
|
2020-07-22 04:46:57 +03:00
|
|
|
"declaration": true,
|
|
|
|
"sourceMap": true,
|
|
|
|
"rootDir": "./src",
|
2020-08-12 07:21:10 +03:00
|
|
|
"outDir": "dist",
|
2020-07-22 04:46:57 +03:00
|
|
|
"strict": true,
|
|
|
|
"strictNullChecks": true,
|
2021-07-03 17:28:48 +03:00
|
|
|
"noUnusedLocals": false,
|
2020-07-22 04:46:57 +03:00
|
|
|
"noUnusedParameters": true,
|
|
|
|
"noImplicitReturns": true,
|
|
|
|
"noFallthroughCasesInSwitch": true,
|
|
|
|
"moduleResolution": "node",
|
|
|
|
"baseUrl": "./",
|
|
|
|
"esModuleInterop": true
|
2020-08-12 07:21:10 +03:00
|
|
|
},
|
2020-08-17 00:23:55 +03:00
|
|
|
"include": [
|
|
|
|
"src"
|
|
|
|
],
|
2020-08-12 07:21:10 +03:00
|
|
|
"exclude": [
|
|
|
|
"node_modules",
|
2021-07-03 17:28:48 +03:00
|
|
|
|
2020-08-12 07:21:10 +03:00
|
|
|
"__tests__",
|
|
|
|
"**/__tests__",
|
|
|
|
"src/__tests__"
|
|
|
|
]
|
2020-08-17 00:23:55 +03:00
|
|
|
}
|