onnxruntime/js/common/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

11 lines
229 B
JSON

{
"extends": "../tsconfig.json",
"compilerOptions": {
"outDir": "./dist/esm",
"declaration": true,
"declarationMap": true,
"esModuleInterop": false,
"noUnusedParameters": true,
},
"include": ["lib"]
}