Packaging typescript app using zeit's pkg (lib.d.ts not found)

1.1k Views Asked by At

I am trying to package a typescript app using zeit's pkg that was compiled to .js using the typescript compiler tsc. The package seems to be created without any issues, however when I try to run the exe I get the error:

TypeScriptError: File 'C:/snapshot/script/node_modules/typescript/lib/lib.d.ts' not found.

So I added every .d.ts files as assets in package.json:

"assets": "**/*.d.ts"

...but that didn't work.

Anyone knows why it cannot find the file even thought its packaged? I verified with --debug and its listed as packaged.

Thank!

0

There are 0 best solutions below