Skip to content

Commit

Permalink
Small fix for eslint
Browse files Browse the repository at this point in the history
  • Loading branch information
LAKSHMIRPILLAI committed Sep 29, 2023
1 parent e8ad2a6 commit 0bc4485
Showing 1 changed file with 2 additions and 30 deletions.
Original file line number Diff line number Diff line change
@@ -1,33 +1,5 @@
{
"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"
},
"extends": "../../tsconfig.json",
"include": ["lib/**/*", "bin/**/*"],
"exclude": ["node_modules", "cdk.out", "dist",
"lib/**/__snapshots__/**"]
"exclude": ["node_modules", "cdk.out", "dist"]
}

0 comments on commit 0bc4485

Please sign in to comment.