godcall/MemoryProxy/tsconfig.json
2026-07-22 17:19:44 +08:00

18 lines
403 B
JSON

{
"compilerOptions": {
"target": "ES2022",
"module": "ESNext",
"moduleResolution": "bundler",
"strict": true,
"esModuleInterop": true,
"skipLibCheck": true,
"outDir": "dist",
"resolveJsonModule": true,
"paths": {
"@context-proxy/cost-guard": ["./packages/cost-guard/src/index.ts"]
}
},
"include": ["src/**/*"],
"exclude": ["node_modules", "dist"]
}