init: working state

compiler + test suite are fine. logging module started, I'd say about 50%
complete.
This commit is contained in:
Rodney, Tiara 2025-04-25 15:56:20 +02:00
commit d27f6c65c1
No known key found for this signature in database
GPG key ID: 5CD8EC1D46106723
11 changed files with 7500 additions and 0 deletions

8
jest.config.js Normal file
View file

@ -0,0 +1,8 @@
/** @type {import('ts-jest').JestConfigurationWithTsJest} **/
module.exports = {
testEnvironment: "node",
transform: {
"^.+.tsx?$": ["ts-jest", {}]
},
roots: ['./tests']
}