7d7ff4475a
* initial esm conversion Signed-off-by: Brian DeHamer <[email protected]> * esm'ify jest tests Signed-off-by: Brian DeHamer <[email protected]> * lint issues Signed-off-by: Brian DeHamer <[email protected]> * debug mock Signed-off-by: Brian DeHamer <[email protected]> * glob updated Signed-off-by: Brian DeHamer <[email protected]> * async all file functions Signed-off-by: Brian DeHamer <[email protected]> * update @actions/github Signed-off-by: Brian DeHamer <[email protected]> * update @actions/attest Signed-off-by: Brian DeHamer <[email protected]> * rebuild package-lock.json Signed-off-by: Brian DeHamer <[email protected]> * use experimental flag for jest in ci Signed-off-by: Brian DeHamer <[email protected]> * remove stray istanbul ignore Signed-off-by: Brian DeHamer <[email protected]> * Optimize getSubjectFromPath to avoid concurrent stat calls Co-authored-by: bdehamer <[email protected]> * Fix boundary condition for MAX_SUBJECT_COUNT check Co-authored-by: bdehamer <[email protected]> * Improve error message clarity for subject count limit Co-authored-by: bdehamer <[email protected]> * Update test to match new error message format Co-authored-by: bdehamer <[email protected]> * rebuild dist Signed-off-by: Brian DeHamer <[email protected]> * Fix parseSBOMFromPath to check file size before reading Co-authored-by: bdehamer <[email protected]> * Build package with updated changes Co-authored-by: bdehamer <[email protected]> --------- Signed-off-by: Brian DeHamer <[email protected]> Co-authored-by: copilot-swe-agent[bot] <[email protected]> Co-authored-by: bdehamer <[email protected]>
21 lines
529 B
JSON
21 lines
529 B
JSON
{
|
|
"$schema": "https://json.schemastore.org/tsconfig",
|
|
"compilerOptions": {
|
|
"target": "ES2022",
|
|
"module": "ESNext",
|
|
"rootDir": "./src",
|
|
"moduleResolution": "Bundler",
|
|
"isolatedModules": true,
|
|
"baseUrl": "./",
|
|
"sourceMap": true,
|
|
"outDir": "./dist",
|
|
"noImplicitAny": true,
|
|
"esModuleInterop": true,
|
|
"forceConsistentCasingInFileNames": true,
|
|
"strict": true,
|
|
"skipLibCheck": true,
|
|
"newLine": "lf"
|
|
},
|
|
"exclude": ["./dist", "./node_modules", "./__tests__", "./coverage"]
|
|
}
|