PLC Bundle V1 Example Implementations

fix ts config

+12 -3
+4 -3
typescript/package.json
··· 12 12 "license": "ISC", 13 13 "dependencies": { 14 14 "@bokuweb/zstd-wasm": "^0.0.27", 15 - "axios": "^1.13.0" 15 + "axios": "^1.13.0", 16 + "@types/node": "^24.9.2" 16 17 }, 17 - "devDependencies": { 18 - "@types/node": "^24.9.2" 18 + "compilerOptions": { 19 + "module": "node20" 19 20 } 20 21 }
+8
typescript/tsconfig.json
··· 1 + { 2 + "compilerOptions": { 3 + "target": "ESNext", 4 + "lib": ["ESNext"], 5 + "module": "nodenext", 6 + "moduleResolution": "nodenext" 7 + } 8 + }