2021-08-03 04:40:40 +03:00
|
|
|
{
|
|
|
|
"compilerOptions": {
|
2023-10-07 13:38:21 +03:00
|
|
|
"target": "esnext",
|
2021-08-03 04:40:40 +03:00
|
|
|
"module": "commonjs",
|
|
|
|
"declaration": true,
|
|
|
|
"strict": true,
|
|
|
|
"sourceMap": true,
|
|
|
|
"resolveJsonModule": true,
|
2023-10-07 13:38:21 +03:00
|
|
|
"types": ["jest"],
|
2021-11-17 16:39:45 +03:00
|
|
|
"skipLibCheck": true,
|
2023-10-07 13:38:21 +03:00
|
|
|
"skipDefaultLibCheck": true,
|
|
|
|
"declarationMap": true,
|
|
|
|
"experimentalDecorators": true,
|
|
|
|
"esModuleInterop": true,
|
|
|
|
"rootDir": "./src",
|
2023-10-07 23:14:00 +03:00
|
|
|
"outDir": "./lib",
|
|
|
|
"incremental": true
|
2021-08-03 04:40:40 +03:00
|
|
|
}
|
|
|
|
}
|