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
12 lines
359 B
JSON
12 lines
359 B
JSON
{
|
|
"extends": "../tsconfig.json",
|
|
"compilerOptions": {
|
|
"module": "Node16",
|
|
"downlevelIteration": true,
|
|
"declaration": true,
|
|
"declarationDir": "./types",
|
|
"typeRoots": ["./node_modules/@webgpu/types", "./node_modules/@types", "../node_modules/@types"]
|
|
},
|
|
"include": ["lib", "script", "test"],
|
|
"exclude": ["lib/wasm/proxy-worker"]
|
|
}
|