Skip to content

Commit

Permalink
Small fix for eslint1
Browse files Browse the repository at this point in the history
  • Loading branch information
LAKSHMIRPILLAI committed Sep 29, 2023
1 parent 516ab91 commit dacdfcf
Showing 1 changed file with 29 additions and 2 deletions.
Original file line number Diff line number Diff line change
@@ -1,6 +1,33 @@
{
"extends": "../../tsconfig.json",
"ts-node": {
"compilerOptions": {
"module": "CommonJS"
}
},
"compilerOptions": {
"target": "ES2020",
"module": "ES2020",
"moduleResolution": "node",
"lib": ["ES2020"],
"declaration": true,
"strict": true,
"noImplicitAny": true,
"strictNullChecks": true,
"esModuleInterop": true,
"noImplicitThis": true,
"alwaysStrict": true,
"noUnusedLocals": false,
"noUnusedParameters": false,
"noImplicitReturns": true,
"noFallthroughCasesInSwitch": false,
"inlineSourceMap": true,
"inlineSources": true,
"experimentalDecorators": true,
"strictPropertyInitialization": false,
"typeRoots": ["./node_modules/@types"],
"outDir": "dist"
},
"include": ["lib/**/*", "bin/**/*"],
"exclude": ["node_modules", "cdk.out", "dist", "lib/**/*.test.ts",
"exclude": ["node_modules", "cdk.out", "dist", "lib/**/*.test.ts",
"lib/**/__snapshots__/**"]
}

0 comments on commit dacdfcf

Please sign in to comment.