mirror of
https://github.com/Dokploy/dokploy.git
synced 2026-09-14 02:56:13 +05:00
18 lines
342 B
JSON
18 lines
342 B
JSON
{
|
|
"compilerOptions": {
|
|
"target": "ESNext",
|
|
"module": "ESNext",
|
|
"moduleResolution": "bundler",
|
|
"strict": true,
|
|
"skipLibCheck": true,
|
|
"outDir": "dist",
|
|
"rootDir": "./src",
|
|
"jsx": "react-jsx",
|
|
"paths": {
|
|
"@/*": ["./*"],
|
|
"@dokploy/server/*": ["../../packages/server/src/*"]
|
|
}
|
|
},
|
|
"exclude": ["node_modules", "dist"]
|
|
}
|