mirror of
https://github.com/actions/attest-build-provenance.git
synced 2025-12-14 03:12:20 +00:00
24 lines
589 B
JSON
24 lines
589 B
JSON
{
|
|
"$schema": "https://json.schemastore.org/tsconfig",
|
|
"compilerOptions": {
|
|
"target": "ES2022",
|
|
"module": "NodeNext",
|
|
"rootDir": "./src",
|
|
"moduleResolution": "NodeNext",
|
|
"baseUrl": "./",
|
|
"sourceMap": true,
|
|
"outDir": "./dist",
|
|
"noImplicitAny": true,
|
|
"esModuleInterop": true,
|
|
"forceConsistentCasingInFileNames": true,
|
|
"strict": true,
|
|
"skipLibCheck": true,
|
|
"newLine": "lf"
|
|
},
|
|
"include": [ "/src/*" ],
|
|
"exclude": ["./dist", "./node_modules", "./__tests__", "./coverage"],
|
|
"references": [
|
|
{ "path": "./packages/attest" }
|
|
]
|
|
}
|