From 06f3ad3f0e787a042e6545d6b9864f831b46ccd2 Mon Sep 17 00:00:00 2001 From: Florent Benoit Date: Thu, 11 May 2023 09:41:47 +0200 Subject: [PATCH] chore: move e2e test to a src folder and add tsconfig file Change-Id: Ic3e1c619802842678a478027badf848efe5a991c Signed-off-by: Florent Benoit --- tests/{ => src}/e2e.spec.ts | 0 tests/tsconfig.json | 26 ++++++++++++++++++++++++++ 2 files changed, 26 insertions(+) rename tests/{ => src}/e2e.spec.ts (100%) create mode 100644 tests/tsconfig.json diff --git a/tests/e2e.spec.ts b/tests/src/e2e.spec.ts similarity index 100% rename from tests/e2e.spec.ts rename to tests/src/e2e.spec.ts diff --git a/tests/tsconfig.json b/tests/tsconfig.json new file mode 100644 index 00000000000..ddefe847ddb --- /dev/null +++ b/tests/tsconfig.json @@ -0,0 +1,26 @@ +{ + "compilerOptions": { + "module": "esnext", + "target": "esnext", + "sourceMap": false, + "moduleResolution": "Node", + "skipLibCheck": true, + "allowSyntheticDefaultImports": true, + "resolveJsonModule": true, + "strict": true, + "isolatedModules": true, + + "types" : ["node"], + + "baseUrl": ".", + "paths": { + "/@/*": [ + "./src/*" + ] + }, + }, + "include": [ + "src/**/*.ts", + "../types/**/*.d.ts" + ] +}