Use correct tsconfig.json in pure tests

This will change the pure tests Mocha setup to actually use the
`tsconfig.json` located in the `test` directory. Before, it was using
the root-level `tsconfig.json`. To ensure we are still using mostly the
same settings, this will extend the `test/tsconfig.json` from the
root-level `tsconfig.json`.
This commit is contained in:
Koen Vlaswinkel
2022-10-28 16:34:36 +02:00
parent a9e49f2d72
commit c4d9ef26a8
5 changed files with 20 additions and 9 deletions

6
.vscode/launch.json vendored
View File

@@ -44,10 +44,8 @@
"bdd",
"--colors",
"--diff",
"-r",
"ts-node/register",
"-r",
"test/mocha.setup.js",
"--config",
".mocharc.json",
"test/pure-tests/**/*.ts"
],
"stopOnEntry": false,