mirror of
https://github.com/saymrwulf/onnxruntime.git
synced 2026-05-16 21:00:14 +00:00
### Description Data processing capabilities to ORT Web. This PR will focus augmenting raw data to and from Tensors. ### Motivation and Context Enabling different app building use cases to leverage ORT in a more natural form. Currently, the user needs to process the data and call Tensor constructors - these util functions will provide a direct path to generating ORT tensors. Co-authored-by: shalvamist <shalva.mist@microsoft.com>
22 lines
538 B
JSON
22 lines
538 B
JSON
{
|
|
"compilerOptions": {
|
|
"module": "ES2015",
|
|
"moduleResolution": "node",
|
|
"declaration": true,
|
|
"esModuleInterop": true,
|
|
"target": "ES2017",
|
|
"lib": ["ES2017", "ESNext.BigInt", "dom"],
|
|
"sourceMap": true,
|
|
"noUnusedLocals": true,
|
|
"noImplicitAny": true,
|
|
"noImplicitReturns": true,
|
|
"noImplicitThis": true,
|
|
"noUnusedParameters": false,
|
|
"alwaysStrict": true,
|
|
"strictNullChecks": true,
|
|
"pretty": true,
|
|
"allowUnreachableCode": false,
|
|
"incremental": true,
|
|
"newLine": "LF"
|
|
}
|
|
}
|