From 0bc4485786e9812966eb5c1f98eb5f39c757aa80 Mon Sep 17 00:00:00 2001 From: Lakshmi Pillai Date: Fri, 29 Sep 2023 12:46:05 +0100 Subject: [PATCH] Small fix for eslint --- .../packages/cdk/tsconfig.json | 32 ++----------------- 1 file changed, 2 insertions(+), 30 deletions(-) diff --git a/support-lambdas/support-post-deployment-tests/packages/cdk/tsconfig.json b/support-lambdas/support-post-deployment-tests/packages/cdk/tsconfig.json index f9183db5de4..a180cb799de 100644 --- a/support-lambdas/support-post-deployment-tests/packages/cdk/tsconfig.json +++ b/support-lambdas/support-post-deployment-tests/packages/cdk/tsconfig.json @@ -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"] }