mirror of
https://github.com/saymrwulf/onnxruntime.git
synced 2026-05-17 21:10:43 +00:00
### Description This change uses a TypeScript trick to infer global types in onnxruntime-common. Thanks to the strong type system of TypeScript, we are able to refer to types that may not be available in the context. This helps to keep onnxruntime-common not to include dependencies like "@webgpu/types", and still being able to use the types in the declaration. See comments of `TryGetGlobalType` in `type-helper.ts`.
8 lines
204 B
JSON
8 lines
204 B
JSON
{
|
|
"entryPoints": ["lib/index.ts"],
|
|
"excludeInternal": true,
|
|
"intentionallyNotExported": ["TryGetGlobalType"],
|
|
"name": "ONNX Runtime JavaScript API",
|
|
"readme": "none",
|
|
"cleanOutputDir": true
|
|
}
|