mirror of
https://github.com/aws-actions/configure-aws-credentials.git
synced 2026-06-09 07:47:08 +00:00
* Implemented editorconfig * Switched to ESM * Switched to a TypeScript workflow * Switched to projen for project management * Major code refactor * TODO: need tests
39 lines
955 B
JSON
Generated
39 lines
955 B
JSON
Generated
{
|
|
"compilerOptions": {
|
|
"alwaysStrict": true,
|
|
"declaration": true,
|
|
"esModuleInterop": true,
|
|
"experimentalDecorators": true,
|
|
"inlineSourceMap": true,
|
|
"inlineSources": true,
|
|
"lib": [
|
|
"es2019"
|
|
],
|
|
"module": "Node16",
|
|
"noEmitOnError": true,
|
|
"noFallthroughCasesInSwitch": true,
|
|
"noImplicitAny": true,
|
|
"noImplicitReturns": true,
|
|
"noImplicitThis": true,
|
|
"noUnusedLocals": true,
|
|
"noUnusedParameters": true,
|
|
"resolveJsonModule": true,
|
|
"strict": true,
|
|
"strictNullChecks": true,
|
|
"strictPropertyInitialization": true,
|
|
"stripInternal": true,
|
|
"target": "ES2022",
|
|
"forceConsistentCasingInFileNames": true,
|
|
"outDir": "dist",
|
|
"moduleResolution": "Node16"
|
|
},
|
|
"include": [
|
|
".projenrc.js",
|
|
"src/**/*.ts",
|
|
"test/**/*.ts"
|
|
],
|
|
"exclude": [
|
|
"node_modules"
|
|
],
|
|
"//": "~~ Generated by projen. To modify, edit .projenrc.js and run \"npx projen\"."
|
|
}
|