mirror of
https://github.com/aws-actions/configure-aws-credentials.git
synced 2026-03-12 18:07:10 -04:00
36 lines
843 B
JSON
36 lines
843 B
JSON
{
|
|
"compilerOptions": {
|
|
"allowUnreachableCode": false,
|
|
"allowUnusedLabels": false,
|
|
"strict": true,
|
|
"exactOptionalPropertyTypes": false,
|
|
"noFallthroughCasesInSwitch": true,
|
|
"noImplicitOverride": true,
|
|
"noImplicitReturns": true,
|
|
"noPropertyAccessFromIndexSignature": false,
|
|
"noUncheckedIndexedAccess": true,
|
|
"noUnusedParameters": true,
|
|
"module": "CommonJS",
|
|
"resolveJsonModule": true,
|
|
"outDir": "build",
|
|
"declaration": true,
|
|
"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"
|
|
],
|
|
}
|
|
|