WIP: Node.js isolation primitive to run asynchronous worker-like operations without leaking async IO
at main 612 B view raw
1{ 2 "compilerOptions": { 3 "types": ["@types/node"], 4 "baseUrl": "./", 5 "rootDir": ".", 6 "forceConsistentCasingInFileNames": true, 7 "importsNotUsedAsValues": "remove", 8 "noEmit": true, 9 "esModuleInterop": true, 10 "noUnusedLocals": true, 11 "allowJs": true, 12 "lib": ["es2016"], 13 "jsx": "react-jsx", 14 "module": "es2022", 15 "moduleResolution": "node", 16 "resolveJsonModule": true, 17 "target": "esnext", 18 "strict": true, 19 "noImplicitAny": false, 20 "noUnusedParameters": true, 21 "skipLibCheck": true, 22 "isolatedModules": true 23 }, 24 "include": ["src", "packages"] 25}