Files
configure-aws-credentials/tsconfig.json
T
Tom Keller 239add3ff1 feat!: Initial v2 commit
* Implemented editorconfig
* Switched to ESM
* Switched to a TypeScript workflow
* Switched to projen for project management
* Major code refactor
* TODO: need tests
2022-10-14 20:43:09 -07:00

40 lines
1002 B
JSON
Generated

{
"compilerOptions": {
"rootDir": "src",
"outDir": "dist",
"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,
"moduleResolution": "Node16",
"allowUnreachableCode": false,
"allowUnusedLabels": false,
"pretty": true
},
"include": [
"src/**/*.ts"
],
"exclude": [],
"//": "~~ Generated by projen. To modify, edit .projenrc.js and run \"npx projen\"."
}