Files
droidclaw/server/tsconfig.json
2026-02-17 14:17:29 +05:30

17 lines
338 B
JSON

{
"compilerOptions": {
"target": "ES2022",
"module": "ES2022",
"moduleResolution": "bundler",
"strict": true,
"esModuleInterop": true,
"skipLibCheck": true,
"outDir": "dist",
"types": ["bun"],
"paths": {
"@droidclaw/shared": ["../packages/shared/src"]
}
},
"include": ["src/**/*.ts"]
}