mirror of
https://github.com/aws-actions/configure-aws-credentials.git
synced 2026-03-12 18:07:10 -04:00
31 lines
822 B
JSON
31 lines
822 B
JSON
{
|
|
"compilerOptions": {
|
|
"allowUnreachableCode": false,
|
|
"allowUnusedLabels": false,
|
|
"strict": true,
|
|
"exactOptionalPropertyTypes": true,
|
|
"noFallthroughCasesInSwitch": true,
|
|
"noImplicitOverride": true,
|
|
"noImplicitReturns": true,
|
|
"noPropertyAccessFromIndexSignature": false,
|
|
"noUncheckedIndexedAccess": true,
|
|
"noUnusedParameters": true,
|
|
"module": "CommonJS",
|
|
"resolveJsonModule": true,
|
|
"outDir": "build",
|
|
"declaration": false,
|
|
"newLine": "lf",
|
|
"noEmitOnError": true,
|
|
"sourceMap": true,
|
|
"disableSizeLimit": true,
|
|
"forceConsistentCasingInFileNames": true,
|
|
"lib": ["ES2020"],
|
|
"target": "ES2020",
|
|
"noErrorTruncation": true,
|
|
"esModuleInterop": true,
|
|
"rootDir": "src"
|
|
},
|
|
"include": ["src/**/*.ts"],
|
|
"exclude": ["test/**/*.ts"]
|
|
}
|