Files
ai-toolkit/ui/tsconfig.worker.json
2025-10-14 12:00:42 -06:00

22 lines
453 B
JSON

{
// tsconfig.worker.json
"compilerOptions": {
"module": "commonjs",
"target": "es2020",
"outDir": "dist/cron",
"moduleResolution": "node",
"types": [
"node"
],
"esModuleInterop": true,
"allowSyntheticDefaultImports": true,
"paths": {
"@/*": [
"./cron/*"
]
}
},
"include": [
"cron/**/*.ts"
]
}