attest-build-provenance/tsconfig.json
Brian DeHamer d6e451253f
reference @actions/attest package (#10)
Signed-off-by: Brian DeHamer <bdehamer@github.com>
2024-02-26 14:49:08 -08:00

19 lines
503 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"
},
"exclude": ["./dist", "./node_modules", "./__tests__", "./coverage"]
}