chore: move e2e test to a src folder and add tsconfig file

Change-Id: Ic3e1c619802842678a478027badf848efe5a991c
Signed-off-by: Florent Benoit <fbenoit@redhat.com>
This commit is contained in:
Florent Benoit 2023-05-11 09:41:47 +02:00 committed by Florent BENOIT
parent 3f0f04f2bb
commit 06f3ad3f0e
2 changed files with 26 additions and 0 deletions

26
tests/tsconfig.json Normal file
View file

@ -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"
]
}