androidtv-remote icon indicating copy to clipboard operation
androidtv-remote copied to clipboard

Error: ENOENT: no such file or directory, open '/my/path/dist/pairingmessage.proto'

Open comod opened this issue 1 year ago • 0 comments

after building i try to execute my app with node dist/bundle.cjs but it fails with Error: ENOENT: no such file or directory, open '/my/path/dist/pairingmessage.proto'


tsconfig.json:

{
  "compilerOptions": {
    "typeRoots": ["./node_modules/@types", "./src/types"],
    "module": "ESNext",
    "target": "ESNext",
    "rootDir": "src",
    "outDir": "build",
    "strict": true,
    "esModuleInterop": true,
    "moduleResolution": "node"
  },
  "include": ["src/**/*"],
  "exclude": ["node_modules"]
}

comod avatar Jan 11 '25 17:01 comod