mirror of
https://github.com/Dokploy/dokploy
synced 2025-06-26 18:27:59 +00:00
19 lines
368 B
JSON
19 lines
368 B
JSON
{
|
|
"compilerOptions": {
|
|
"target": "ESNext",
|
|
"module": "ESNext",
|
|
"moduleResolution": "Node",
|
|
"strict": true,
|
|
"skipLibCheck": true,
|
|
"outDir": "dist",
|
|
"jsx": "react-jsx",
|
|
"jsxImportSource": "hono/jsx",
|
|
"baseUrl": ".",
|
|
"paths": {
|
|
"@/*": ["./*"],
|
|
"@dokploy/server/*": ["../../packages/server/src/*"]
|
|
}
|
|
},
|
|
"exclude": ["node_modules", "dist"]
|
|
}
|