2022-12-05 07:06:11 +00:00
|
|
|
{
|
|
|
|
|
"compilerOptions": {
|
|
|
|
|
"module": "commonjs",
|
|
|
|
|
"declaration": true,
|
|
|
|
|
"removeComments": true,
|
|
|
|
|
"emitDecoratorMetadata": true,
|
|
|
|
|
"experimentalDecorators": true,
|
|
|
|
|
"allowSyntheticDefaultImports": true,
|
2025-11-24 08:51:29 +00:00
|
|
|
"target": "ES2023",
|
2022-12-05 07:06:11 +00:00
|
|
|
"sourceMap": true,
|
|
|
|
|
"outDir": "./dist",
|
|
|
|
|
"baseUrl": "./",
|
|
|
|
|
"incremental": true,
|
|
|
|
|
"skipLibCheck": true,
|
2022-12-15 17:53:13 +00:00
|
|
|
"strict": false,
|
2022-12-05 07:06:11 +00:00
|
|
|
"strictNullChecks": false,
|
|
|
|
|
"noImplicitAny": false,
|
|
|
|
|
"strictBindCallApply": false,
|
|
|
|
|
"forceConsistentCasingInFileNames": false,
|
2023-01-19 10:55:36 +00:00
|
|
|
"noFallthroughCasesInSwitch": true,
|
2025-11-24 08:51:29 +00:00
|
|
|
"esModuleInterop": true,
|
|
|
|
|
"moduleResolution": "node"
|
2022-12-05 07:06:11 +00:00
|
|
|
}
|
|
|
|
|
}
|