Azure / azure-functions-nodejs-worker

The Node.js worker for the Azure Functions runtime - https://functions.azure.com
MIT License
106 stars 44 forks source link

Node.js v4 migration - .funcignore additiona of .tsconfig.json #734

Closed dfberry closed 7 months ago

dfberry commented 10 months ago

Why is the tsconfig.json now in the .funcignore file?

@glaucia86 fyi

khkh-ms commented 7 months ago

It will be transferred to functions node repo.

ejizba commented 7 months ago

We generally assume most projects will build before deploying, so build-related files (like tsconfig.json, *.ts files, etc.) are excluded to keep the deploy clean/small. Of course people are free to configure this differently - if they are doing a remote build they would probably remove these

dfberry commented 7 months ago

I think it was interfering with a sample project but now that its been so long and I'm not seeing it now - maybe the project compensated for it. Any way, thanks for answering.