Files
Janne Valkealahti 3743a7f32d 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
2022-05-07 17:51:51 +01:00

20 lines
366 B
JSON

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