mirror of
https://github.com/computernewb/collabvm-1.2.ts.git
synced 2025-01-22 10:42:00 -05:00
227a171110
It sucked. The new one is using Sans I/O principles, so it does not directly do I/O or talk to a net.Socket directly (instead, QemuVM implements the layer to do I/O). This means in the future this library could actually be tested, but for now, I'm not bothering with that. There's also some other cleanups that were bothering me.
11 lines
268 B
JSON
11 lines
268 B
JSON
// This is the base tsconfig the entire cvmts project uses
|
|
{
|
|
"compilerOptions": {
|
|
"target": "ES2022",
|
|
"module": "ES2022",
|
|
"moduleResolution": "Node",
|
|
"types": ["node"],
|
|
"allowSyntheticDefaultImports": true,
|
|
"strict": true,
|
|
}
|
|
}
|