mirror of
https://github.com/saymrwulf/onnxruntime.git
synced 2026-05-18 21:21:17 +00:00
### Description upgrade JS shared dev dependencies. - webpack: removed - eslint: upgrade to latest. - eslint config upgraded to compatible with latest version - typescript upgrade to v5 - update module "CommonJS" to "Node16" in tsconfig - update deprecated config "importsNotUsedAsValues" to "verbatimModuleSyntax" - remove webpack bundles in onnxruntime-common
21 lines
515 B
JSON
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"
|
|
}
|
|
}
|