onnxruntime/js/tsconfig.json
Yulong Wang 5228332c9f
[js] upgrade JS shared dev dependencies (#17831)
### 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
2023-10-10 17:44:39 -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"
}
}