2023-10-07 10:38:21 +00:00
|
|
|
{
|
|
|
|
"compilerOptions": {
|
|
|
|
"target": "esnext",
|
|
|
|
"module": "commonjs",
|
|
|
|
"declaration": true,
|
|
|
|
"strict": true,
|
|
|
|
"sourceMap": true,
|
|
|
|
"resolveJsonModule": true,
|
2024-02-12 16:57:11 +00:00
|
|
|
"types": ["node", "jest"],
|
2023-10-07 10:38:21 +00:00
|
|
|
"skipLibCheck": true,
|
|
|
|
"skipDefaultLibCheck": true,
|
|
|
|
"declarationMap": true,
|
2024-02-12 16:57:11 +00:00
|
|
|
"experimentalDecorators": true,
|
2023-10-07 10:38:21 +00:00
|
|
|
"esModuleInterop": true,
|
|
|
|
"rootDir": "./src",
|
|
|
|
"outDir": "./lib",
|
2024-03-11 04:24:46 +00:00
|
|
|
"incremental": true,
|
|
|
|
"isolatedModules": true
|
2023-10-07 10:38:21 +00:00
|
|
|
}
|
|
|
|
}
|