Offload functions to worker threads with shared memory primitives for Node.js.
8
fork

Configure Feed

Select the types of activity you want to include in your feed.

chore: project scaffolding

Devin Ivy ba151324

+21
+9
package.json
··· 1 + { 2 + "name": "moroutine", 3 + "version": "0.0.0", 4 + "type": "module", 5 + "exports": "./src/index.ts", 6 + "scripts": { 7 + "test": "node --experimental-strip-types --test test/**/*.test.ts" 8 + } 9 + }
+12
tsconfig.json
··· 1 + { 2 + "compilerOptions": { 3 + "target": "es2022", 4 + "module": "nodenext", 5 + "moduleResolution": "nodenext", 6 + "strict": true, 7 + "noEmit": true, 8 + "allowImportingTsExtensions": true, 9 + "erasableSyntaxOnly": true 10 + }, 11 + "include": ["src", "test"] 12 + }