Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions release_notes.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,9 @@
- Enhanced dotnet installation discovery by adopting the same `Muxer` logic used by the .NET SDK itself (#4732)
- Update .NET templates package version to 4.0.5337 (#4728)
- Fix `func pack --build-native-deps` failure on Windows for Python 3.13+ (#4742)
- Update the TypeScript project template to improve interoperability (#4739)
- Upgrade `typescript` from `^4.0.0` to `^5.0.0`
- Add `"esModuleInterop": true` option to `tsconfig.json`
- Cleaned up `func --help` output and fixed validation errors when using the `--help` flag for specific commands (#4748)
- Improved `func init --help` output to better display options for each worker runtime (#4748)
- Fix F# project & template initialization via `func init | new` (#4749)
2 changes: 1 addition & 1 deletion src/Cli/func/StaticResources/package-ts-v4.json
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
"devDependencies": {
"azure-functions-core-tools": "^4.x",
"@types/node": "18.x",
"typescript": "^4.0.0",
"typescript": "^5.0.0",
"rimraf": "^5.0.0"
}
}
2 changes: 1 addition & 1 deletion src/Cli/func/StaticResources/package-ts.json
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,6 @@
"@azure/functions": "^3.0.0",
"azure-functions-core-tools": "^4.x",
"@types/node": "18.x",
"typescript": "^4.0.0"
"typescript": "^5.0.0"
}
}
3 changes: 2 additions & 1 deletion src/Cli/func/StaticResources/tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@
"outDir": "dist",
"rootDir": ".",
"sourceMap": true,
"strict": false
"strict": false,
"esModuleInterop": true
}
}
Loading