2026-03-25 22:50:24 -07:00
|
|
|
{
|
|
|
|
|
"compilerOptions": {
|
|
|
|
|
"module": "CommonJS",
|
|
|
|
|
"declaration": true,
|
|
|
|
|
"removeComments": true,
|
|
|
|
|
"emitDecoratorMetadata": true,
|
|
|
|
|
"experimentalDecorators": true,
|
|
|
|
|
"allowSyntheticDefaultImports": true,
|
2026-04-18 13:54:47 -07:00
|
|
|
"target": "ES2022",
|
2026-03-25 22:50:24 -07:00
|
|
|
"sourceMap": true,
|
|
|
|
|
"outDir": "./dist",
|
|
|
|
|
"baseUrl": "./",
|
|
|
|
|
"paths": {
|
|
|
|
|
"@/*": ["src/*"]
|
|
|
|
|
},
|
|
|
|
|
"incremental": true,
|
|
|
|
|
"skipLibCheck": true,
|
|
|
|
|
"strictNullChecks": true,
|
|
|
|
|
"noImplicitAny": true,
|
|
|
|
|
"strictBindCallApply": true,
|
|
|
|
|
"forceConsistentCasingInFileNames": true,
|
|
|
|
|
"noFallthroughCasesInSwitch": true
|
|
|
|
|
},
|
|
|
|
|
"include": ["src/**/*"],
|
|
|
|
|
"exclude": ["node_modules", "dist", "test", "**/*spec.ts"]
|
|
|
|
|
}
|