rust-cache/tsconfig.json
Ryan-Brice c16dfe52fa
fix: Update tsconfig.json module resolution settings to match the action.yml files runs.using version "node20"
NOTE: Updating to stop `tsc` command warnings when using `typescript@5.9.3`
2025-10-31 18:46:48 +08:00

22 lines
411 B
JSON

{
"compilerOptions": {
"noEmitOnError": false,
"diagnostics": true,
"lib": ["esnext"],
"target": "es2020",
"resolveJsonModule": true,
"moduleResolution": "node16",
"module": "node20",
"esModuleInterop": true,
"strict": true,
"skipLibCheck": true,
"noUnusedLocals": true,
"noUnusedParameters": true,
"noImplicitReturns": true
},
"exclude": ["dist"]
}