diff --git a/packages/extensions/ws/tsconfig.esm.json b/packages/extensions/ws/tsconfig.esm.json index 7a474709..d26a4951 100644 --- a/packages/extensions/ws/tsconfig.esm.json +++ b/packages/extensions/ws/tsconfig.esm.json @@ -1,15 +1,29 @@ { "compilerOptions": { "esModuleInterop": true, - "module": "NodeNext", - "moduleResolution": "nodenext", - "target": "ES2022", + "module": "ESNext", + "target": "ESNext", "declaration": true, "outDir": "./dist/esm", "skipLibCheck": true, "paths": { + "@rc-ex/core": [ + "../../core/dist/esm/index" + ], "@rc-ex/core/*": [ "../../core/dist/esm/*" + ], + "isomorphic-ws": [ + "../../../node_modules/isomorphic-ws/node.js" + ], + "wait-for-async": [ + "../../../node_modules/wait-for-async/dist/esm/index.js" + ], + "hyperid": [ + "../../../node_modules/hyperid/hyperid.js" + ], + "http-status-codes": [ + "../../../node_modules/http-status-codes/build/es/index.js" ] } },