Remove python, replace with ts

This commit is contained in:
simojenki
2021-01-26 16:56:00 +11:00
parent 2fdaaf471f
commit 695b92c912
18 changed files with 2125 additions and 21 deletions

13
register.js Normal file
View File

@@ -0,0 +1,13 @@
/**
* Overrides the tsconfig used for the app.
* In the test environment we need some tweaks.
*/
const tsNode = require('ts-node');
const testTSConfig = require('./tests/tsconfig.json');
tsNode.register({
files: true,
transpileOnly: true,
project: './tests/tsconfig.json'
});