wrapture
Version:
Wrapture lets you go from a Python-trained model to deployable JavaScript with a single command. It generates TypeScript bindings and a Web/Node-compatible wrapper, using WebGPU/WASM-ready ONNX runtimes.
28 lines (27 loc) • 566 B
JSON
{
"compilerOptions": {
"target": "ES2022",
"outDir": "bin",
"module": "Node16",
"lib": ["ES2022", "dom", "dom.iterable"],
"sourceMap": true,
"declaration": true,
"declarationMap": true,
"declarationDir": "./dts",
"noImplicitReturns": true,
"noImplicitThis": true,
"noImplicitAny": false,
"strictNullChecks": true,
"skipLibCheck": true,
"esModuleInterop": true,
"resolveJsonModule": true
},
"exclude": [
"node_modules",
"dist",
"bin",
"scripts",
"dts",
"**/__tests__/**"
]
}