2025-05-12 11:05:17 -06:00
|
|
|
{
|
|
|
|
|
"compilerOptions": {
|
|
|
|
|
"module": "commonjs",
|
|
|
|
|
"declaration": true,
|
|
|
|
|
"removeComments": true,
|
|
|
|
|
"emitDecoratorMetadata": true,
|
|
|
|
|
"experimentalDecorators": true,
|
|
|
|
|
"allowSyntheticDefaultImports": true,
|
|
|
|
|
"target": "ES2023",
|
|
|
|
|
"sourceMap": true,
|
|
|
|
|
"outDir": "./dist",
|
|
|
|
|
"baseUrl": "./",
|
2025-10-15 17:12:44 -06:00
|
|
|
"paths": {
|
|
|
|
|
"src/*": ["src/*"]
|
|
|
|
|
},
|
2025-05-12 11:05:17 -06:00
|
|
|
"incremental": true,
|
|
|
|
|
"skipLibCheck": true,
|
|
|
|
|
"strictNullChecks": true,
|
|
|
|
|
"forceConsistentCasingInFileNames": true,
|
|
|
|
|
"noImplicitAny": false,
|
|
|
|
|
"strictBindCallApply": false,
|
|
|
|
|
"noFallthroughCasesInSwitch": false
|
|
|
|
|
}
|
|
|
|
|
}
|