mirror of
https://github.com/extism/extism.git
synced 2026-04-23 03:00:11 -04:00
Let's get the last changes in this week for a release. Will hold this PR until all changes we want are in. Release checklist: - [x] test: updates across CI to test for Host Function output / integration (#219) - this should probably look something like a grep for some kind of output proving guest/host interop? - [x] Fix for userData pointer issue in Go host functions (#220) - [x] docs: Host Functions in SDKs - [ ] sdk: C - [ ] sdk: C++ - [ ] sdk: Python - [ ] sdk: Node - [ ] sdk: Go - [ ] sdk: Rust - [x] docs: Manifest property names (http `headers` & memory `max_pages`) - [ ] blog: announcing v0.2.0, including host functions, Zig SDK/PDK, Java SDK, .NET SDK, + ...
14 lines
324 B
JSON
14 lines
324 B
JSON
{
|
|
"compilerOptions": {
|
|
"target": "es2016",
|
|
"module": "commonjs",
|
|
"esModuleInterop": true,
|
|
"forceConsistentCasingInFileNames": true,
|
|
"declaration": true,
|
|
"strict": true,
|
|
"skipLibCheck": true,
|
|
"allowJs": true
|
|
},
|
|
"exclude": ["node_modules", "dist", "**/*.test.ts"]
|
|
}
|