Offload functions to worker threads with shared memory primitives for Node.js.
1{
2 "compilerOptions": {
3 "target": "es2022",
4 "lib": ["es2022", "esnext.disposable", "es2024.sharedmemory"],
5 "types": ["node"],
6 "module": "nodenext",
7 "moduleResolution": "nodenext",
8 "strict": true,
9 "noEmit": true,
10 "allowImportingTsExtensions": true,
11 "erasableSyntaxOnly": true
12 },
13 "include": ["src", "test"]
14}