From dacdfcfbddcba6d8dffe3433eb824e7ef34ef4bb Mon Sep 17 00:00:00 2001 From: Lakshmi Pillai Date: Fri, 29 Sep 2023 12:51:49 +0100 Subject: [PATCH] Small fix for eslint1 --- .../packages/cdk/tsconfig.json | 31 +++++++++++++++++-- 1 file changed, 29 insertions(+), 2 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 35af93b12f..6294aa63a4 100644 --- a/support-lambdas/support-post-deployment-tests/packages/cdk/tsconfig.json +++ b/support-lambdas/support-post-deployment-tests/packages/cdk/tsconfig.json @@ -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__/**"] }