2021-11-18 15:48:05 +03:00
|
|
|
{
|
|
|
|
"compilerOptions": {
|
2023-10-07 13:38:21 +03:00
|
|
|
"moduleResolution": "node",
|
|
|
|
"target": "esnext",
|
2021-11-18 15:48:05 +03:00
|
|
|
"module": "commonjs",
|
2023-10-07 13:38:21 +03:00
|
|
|
"sourceMap": true,
|
2021-11-18 15:48:05 +03:00
|
|
|
"declaration": true,
|
2023-10-07 13:38:21 +03:00
|
|
|
"rootDir": "./src",
|
|
|
|
"outDir": "./lib",
|
2021-11-18 15:48:05 +03:00
|
|
|
"strict": true,
|
2022-04-18 13:28:18 +03:00
|
|
|
"skipLibCheck": true,
|
2023-10-07 23:14:00 +03:00
|
|
|
"skipDefaultLibCheck": true,
|
2023-10-07 13:38:21 +03:00
|
|
|
"esModuleInterop": true,
|
|
|
|
"lib": [
|
|
|
|
"esnext",
|
|
|
|
"dom"
|
|
|
|
],
|
2023-10-07 23:14:00 +03:00
|
|
|
"types": ["node", "jest"],
|
|
|
|
"incremental": true
|
2021-11-18 15:48:05 +03:00
|
|
|
}
|
|
|
|
}
|