2026-01-23 16:46:12 -08:00
|
|
|
{
|
|
|
|
|
"compilerOptions": {
|
|
|
|
|
"target": "ES2022",
|
2026-01-23 16:53:06 -08:00
|
|
|
"module": "CommonJS",
|
|
|
|
|
"lib": ["ES2022"],
|
2026-01-23 16:52:38 -08:00
|
|
|
"moduleResolution": "node",
|
2026-01-23 16:53:06 -08:00
|
|
|
"resolveJsonModule": true,
|
|
|
|
|
"allowJs": true,
|
|
|
|
|
"strict": true,
|
|
|
|
|
"esModuleInterop": true,
|
|
|
|
|
"skipLibCheck": true,
|
|
|
|
|
"forceConsistentCasingInFileNames": true,
|
|
|
|
|
"declaration": true,
|
|
|
|
|
"declarationMap": true,
|
|
|
|
|
"sourceMap": true,
|
|
|
|
|
"outDir": "./dist",
|
|
|
|
|
"baseUrl": ".",
|
|
|
|
|
"paths": {
|
|
|
|
|
"@brazil-swift-ops/types": ["../../packages/types/src"],
|
|
|
|
|
"@brazil-swift-ops/utils": ["../../packages/utils/src"],
|
|
|
|
|
"@brazil-swift-ops/rules-engine": ["../../packages/rules-engine/src"]
|
|
|
|
|
}
|
2026-01-23 16:46:12 -08:00
|
|
|
},
|
|
|
|
|
"include": ["src/**/*"],
|
2026-01-23 19:18:13 -08:00
|
|
|
"exclude": ["node_modules", "dist", "src/**/__tests__/**/*", "src/**/*.test.ts"]
|
2026-01-23 16:46:12 -08:00
|
|
|
}
|