androidtv-remote
androidtv-remote copied to clipboard
Error: ENOENT: no such file or directory, open '/my/path/dist/pairingmessage.proto'
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"]
}