* Add startup.jobs extractor support * Harden startup.jobs extractor inputs * Wire startupjobs into Docker and CI * Tighten startupjobs review follow-ups * fix: publish ghcr during release workflow * feat: add startupjobs max jobs configuration and update related tests
17 lines
328 B
JSON
17 lines
328 B
JSON
{
|
|
"compilerOptions": {
|
|
"module": "ESNext",
|
|
"moduleResolution": "bundler",
|
|
"target": "ES2022",
|
|
"strict": true,
|
|
"noUnusedLocals": false,
|
|
"lib": ["ES2022", "DOM"],
|
|
"types": ["node"],
|
|
"baseUrl": ".",
|
|
"paths": {
|
|
"@shared/*": ["../../shared/src/*"]
|
|
}
|
|
},
|
|
"include": ["./src/**/*"]
|
|
}
|