mirror of
https://github.com/podman-desktop/podman-desktop
synced 2026-05-24 10:18:53 +00:00
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:
parent
3f0f04f2bb
commit
06f3ad3f0e
2 changed files with 26 additions and 0 deletions
26
tests/tsconfig.json
Normal file
26
tests/tsconfig.json
Normal 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"
|
||||
]
|
||||
}
|
||||
Loading…
Reference in a new issue