onnxruntime/js/web/tsconfig.json
Yulong Wang e3e4926d00
[js/common] allow import onnxruntime-common as ESM and CJS (#15772)
### Description
allow import onnxruntime-common as ESM and CJS.
2023-06-12 12:05:11 -07:00

12 lines
335 B
JSON

{
"extends": "../tsconfig.json",
"compilerOptions": {
"module": "CommonJS",
"downlevelIteration": true,
"declaration": true,
"declarationDir": "./types",
"typeRoots": ["./node_modules/@webgpu/types", "./node_modules/@types"]
},
"include": ["lib", "script", "test"],
"exclude": ["lib/wasm/proxy-worker"]
}