3
0
Fork 0
mirror of https://github.com/Swatinem/rust-cache synced 2025-12-09 23:03:34 +00:00
rust-cache/tsconfig.json
Ryan-Brice 74f2e4d3dd
feat: Implement caching mechanism for Rust projects
- 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.
2025-10-21 17:40:45 +08:00

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"]
}