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

21 lines
515 B
JSON

{
"compilerOptions": {
"module": "ES2015",
"moduleResolution": "node16",
"esModuleInterop": true,
"target": "ES2020",
"lib": ["ES2020", "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"
}
}