mirror of
https://github.com/Swatinem/rust-cache
synced 2025-12-09 23:03:34 +00:00
- Added CacheConfig class to manage cache paths, keys, and workspace configurations. - Implemented cache restoration logic in restore.js, including handling cache misses and mismatches. - Developed save.js to handle cache saving, including cleaning up target directories and registry. - Introduced utility functions in utils.js for command execution and cache provider selection. - Created Workspace class in workspace.js to manage Rust workspace metadata and package retrieval.
21 lines
415 B
JSON
21 lines
415 B
JSON
{
|
|
"compilerOptions": {
|
|
"noEmitOnError": false,
|
|
"diagnostics": true,
|
|
"lib": ["esnext"],
|
|
|
|
"target": "es2020",
|
|
|
|
"resolveJsonModule": true,
|
|
"moduleResolution": "nodenext",
|
|
"module": "NodeNext",
|
|
"esModuleInterop": true,
|
|
|
|
"strict": true,
|
|
"skipLibCheck": true,
|
|
"noUnusedLocals": true,
|
|
"noUnusedParameters": true,
|
|
"noImplicitReturns": true
|
|
},
|
|
"exclude": ["dist"]
|
|
}
|