Initial attempt for e2e tests
- Add node code for e2e tests. This is a first take to try running these tests via actions. - Relates to #401
This commit is contained in:
19
e2e/spring-shell-e2e-tests/tsconfig.json
Normal file
19
e2e/spring-shell-e2e-tests/tsconfig.json
Normal file
@@ -0,0 +1,19 @@
|
||||
{
|
||||
"compilerOptions": {
|
||||
"target": "es2019",
|
||||
"module": "commonjs",
|
||||
"outDir": "./lib",
|
||||
"rootDirs": ["./src", "./test"],
|
||||
"strict": true,
|
||||
"baseUrl": ".",
|
||||
"noImplicitAny": false,
|
||||
"paths": {
|
||||
"*": ["./types/*"]
|
||||
},
|
||||
"esModuleInterop": true,
|
||||
"lib": [
|
||||
"es2019"
|
||||
]
|
||||
},
|
||||
"exclude": ["node_modules", "**/*.test.ts"]
|
||||
}
|
||||
Reference in New Issue
Block a user